/* Common styles for all pages with clean professional look */

/* Clean background for main app pages */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  min-height: 100vh;
}

/* Glass card effect - now subtle for professional look */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Form styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333;
  outline: none;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #d88195;
  box-shadow: 0 0 5px rgba(216, 129, 149, 0.3);
}

.btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #d88195, #c76b83);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #c76b83, #b0556f);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(216, 129, 149, 0.3);
}

/* Navbar styles */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
}

.navbar .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #d88195;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .logo:hover {
    color: #c76b83;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 129, 149, 0.1), transparent);
    transition: left 0.5s;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    background: rgba(216, 129, 149, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-links .btn {
    background: linear-gradient(135deg, #d88195, #c76b83);
    color: white !important;
    border: 1px solid rgba(216, 129, 149, 0.3);
    box-shadow: 0 4px 15px rgba(216, 129, 149, 0.3);
}

.nav-links .btn:hover {
    background: linear-gradient(135deg, #c76b83, #b0556f);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(216, 129, 149, 0.4);
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        border-radius: 0 0 15px 15px;
    }
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .navbar .logo {
        font-size: 1.5rem;
    }
}