/* 
 * Pilot Profile Alert Styles
 * Discrete notification for pilots to update their profile
 */

.pilot-profile-alert {
  background-color: rgba(255, 193, 7, 0.1);
  border-bottom: 1px solid rgba(255, 193, 7, 0.2);
  padding: 8px 0;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.pilot-profile-alert .alert-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pilot-profile-alert .alert-icon {
  color: #ffc107;
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  height: 28px;
}

.pilot-profile-alert .alert-message {
  flex: 1;
  color: #6c757d;
  display: flex;
  align-items: center;
  min-height: 28px;
}

.pilot-profile-alert .alert-message strong {
  color: #212529;
}

.pilot-profile-alert .btn {
  margin-left: 15px;
  padding: 5px 12px;
  font-size: 13px;
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 28px;
}

.pilot-profile-alert .btn:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.pilot-profile-alert .alert-close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 12px;
  cursor: pointer;
  margin-left: 10px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
}

.pilot-profile-alert .alert-close:hover {
  color: #666;
}

@media (max-width: 768px) {
  .pilot-profile-alert {
    font-size: 12px;
  }
  
  .pilot-profile-alert .alert-content {
    flex-wrap: wrap;
  }
  
  .pilot-profile-alert .btn {
    margin-left: 0;
    margin-top: 8px;
  }
}