:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FFFCFB 0%, #FFFCFB 100%);
    min-height: 100vh;
  }
  
  /* Login Styles */
  .login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .logo-container {
    text-align: center;
    margin-bottom: 30px;
  }
  
     .logo {
              width: 40px;
              height: 40px;
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              color: white;
              font-size: 1.2rem;
          }
  
  .form-control {
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
  }
  
  .btn-login {
    background: #D5451B;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .btn-login:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  /* Dashboard Styles */
  .dashboard {
    min-height: 100vh;
    background: #f1f5f9;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
  }
  
  .sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .sidebar.collapsed .sidebar-header .logo-text {
    display: none;
  }
  
  .sidebar-nav {
    padding: 20px 0;
  }
  
  .nav-item {
    margin: 5px 15px;
  }
  
  .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: #ED3500;
    color: white;
  }
  
  .sidebar.collapsed .nav-link span {
    display: none;
  }
  
  .sidebar.collapsed .nav-item {
    margin: 5px 10px;
  }
  
  .main-content {
    margin-left: var(--sidebar-width);
    transition: all 0.3s ease;
    min-height: 100vh;
  }
  
  .main-content.expanded {
    margin-left: var(--sidebar-collapsed-width);
  }
  
  .top-bar {
    background: white;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .content-area {
    padding: 30px;
  }
  
  /* Welcome Banner */
  .welcome-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 30px;
    color: white;
  }
  
  /* Stats Cards */
  .stats-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
  }
  
  .stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
  }
  
  .stats-content {
    flex: 1;
  }
  
  .stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
    line-height: 1;
  }
  
  .stats-label {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 5px;
  }
  
  .stats-change {
    font-size: 0.8rem;
    margin-top: 5px;
  }
  
  /* Service Cards */
  .service-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
  }
  
  .service-content h6 {
    margin-bottom: 10px;
  }
  
  .service-stats {
    margin: 15px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
  }
  
  .stat-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  .stat-label {
    font-size: 0.8rem;
    color: #6b7280;
  }
  
  /* Dashboard Widgets */
  .dashboard-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
  }
  
  .widget-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .widget-actions {
    margin-left: auto;
  }
  
  /* Activity Timeline */
  .activity-timeline {
    position: relative;
  }
  
  .activity-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .activity-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: calc(100% + 20px);
    background: #e5e7eb;
  }
  
  .activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  .activity-content {
    flex: 1;
  }
  
  /* Alert Items */
  .alert-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
  }
  
  .alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  .alert-content {
    flex: 1;
  }
  
  /* Event List */
  .event-list {
    space-y: 15px;
  }
  
  .event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .event-date {
    text-align: center;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 10px;
    min-width: 60px;
  }
  
  .date-day {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
  }
  
  .date-month {
    font-size: 0.8rem;
    opacity: 0.8;
  }
  
  .event-content {
    flex: 1;
  }
  
  /* Department Header */
  .department-header {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .department-stats .stat-item {
    text-align: center;
  }
  
  .department-stats .stat-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
  }
  
  .department-stats .stat-label {
    font-size: 0.9rem;
    color: #6b7280;
  }
  
  /* Tab Content */
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .nav-tabs .nav-link {
    color: var(--primary-color);
    border: 1px solid transparent;
    border-radius: 8px 8px 0 0;
    padding: 12px 20px;
  }
  
  .nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .nav-tabs .nav-link:hover {
    background: rgba(30, 64, 175, 0.1);
  }
  
  /* Program Cards */
  .program-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .program-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .program-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .program-stats {
    margin: 15px 0;
  }
  
  .program-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  
  .program-benefits li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: #6b7280;
  }
  
  /* Livelihood Cards */
  .livelihood-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .livelihood-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .livelihood-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  /* Success Stories */
  .success-stories {
    space-y: 20px;
  }
  
  .story-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .story-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .story-content {
    font-style: italic;
    margin-bottom: 15px;
    color: #4b5563;
  }
  
  .story-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  /* Coverage Cards */
  .coverage-card,
  .requirement-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
  }
  
  /* Course List */
  .course-list {
    space-y: 10px;
  }
  
  .course-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  /* Impact Stats */
  .impact-stats {
    text-align: center;
  }
  
  .impact-item {
    margin-bottom: 20px;
  }
  
  .impact-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
  }
  
  .impact-label {
    font-size: 0.9rem;
    color: #6b7280;
  }
  
  /* Burial Stats */
  .burial-stats {
    text-align: center;
  }
  
  .stat-item {
    margin-bottom: 20px;
  }
  
  /* Document List */
  .document-list {
    space-y: 10px;
  }
  
  .document-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  /* Geographic Stats */
  .geo-stats {
    space-y: 15px;
  }
  
  .geo-item {
    margin-bottom: 15px;
  }
  
  .geo-item span {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .geo-item .progress {
    height: 8px;
    margin-bottom: 5px;
  }
  
  /* Performance Metrics */
  .metric-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .metric-item:last-child {
    border-bottom: none;
  }
  
  .metric-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 5px;
  }
  
  .metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
  }
  
  /* Budget Summary */
  .budget-summary {
    space-y: 5px;
  }
  
  .budget-summary .d-flex {
    margin-bottom: 5px;
  }
  
  /* Application Form */
  .application-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    position: relative;
  }
  
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
  }
  
  .form-section {
    margin-bottom: 25px;
  }
  
  .form-section h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .document-checklist {
    margin-top: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
  }
  
  .document-checklist .form-check {
    margin-bottom: 10px;
  }
  
  .form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
  }
  
  /* Medical Needs List */
  .medical-needs-list {
    space-y: 10px;
  }
  
  .need-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  /* Budget Item */
  .budget-item {
    margin-bottom: 15px;
  }
  
  .budget-item .progress {
    height: 8px;
    margin: 8px 0;
  }
  
  /* Distribution Item */
  .distribution-item {
    margin-bottom: 15px;
  }
  
  .distribution-item .progress {
    height: 6px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .sidebar {
      transform: translateX(-100%);
    }
  
    .sidebar.show {
      transform: translateX(0);
    }
  
    .main-content {
      margin-left: 0;
    }
  
    .content-area {
      padding: 15px;
    }
  
    .stats-card {
      flex-direction: column;
      text-align: center;
    }
  
    .service-card {
      margin-bottom: 20px;
    }
  
    .form-actions {
      flex-direction: column;
    }
  
    .form-actions .btn {
      width: 100%;
    }
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 0.5s ease-in;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Button Styles */
  .btn-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .btn-toggle:hover {
    background: rgba(30, 64, 175, 0.1);
  }
  
  /* Utility Classes */
  .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  
  /* Focus States */
  .nav-link:focus,
  .btn:focus,
  .form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* Print Styles */
  @media print {
    .sidebar,
    .top-bar,
    .btn,
    .form-actions {
      display: none !important;
    }
  
    .main-content {
      margin-left: 0 !important;
    }
  
    .dashboard-widget {
      break-inside: avoid;
      box-shadow: none;
      border: 1px solid #ddd;
    }
  }
  
  /* Academic Performance Chart Widget */
  .academic-performance-widget {
      min-height: 300px;
      padding: 24px 16px 16px 16px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(9, 63, 180, 0.07);
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  .academic-performance-widget h6 {
      margin-bottom: 16px;
      font-weight: 600;
  }
  #academicChart {
      max-width: 100%;
      height: 220px !important;
      width: 220px !important;
      margin: 0 auto;
      display: block;
  }
  @media (max-width: 767px) {
      .academic-performance-widget {
          min-height: 200px;
          padding: 12px 8px;
      }
      #academicChart {
          height: 140px !important;
          width: 140px !important;
      }
  }
  
  /* Service Utilization Trends Chart Widget */
  .utilization-trends-widget {
      min-height: 340px;
      padding: 24px 16px 16px 16px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(9, 63, 180, 0.07);
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  .utilization-trends-widget h6 {
      margin-bottom: 16px;
      font-weight: 600;
  }
  #utilizationChart {
      max-width: 100%;
      height: 260px !important;
      width: 100% !important;
      margin: 0 auto;
      display: block;
  }
  @media (max-width: 767px) {
      .utilization-trends-widget {
          min-height: 200px;
          padding: 12px 8px;
      }
      #utilizationChart {
          height: 140px !important;
      }
  }
  
  /* Budget Utilization Chart Widget */
  .budget-utilization-widget {
      min-height: 300px;
      padding: 24px 16px 16px 16px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(9, 63, 180, 0.07);
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  .budget-utilization-widget h6 {
      margin-bottom: 16px;
      font-weight: 600;
  }
  #budgetChart {
      max-width: 100%;
      height: 220px !important;
      width: 220px !important;
      margin: 0 auto;
      display: block;
  }
  @media (max-width: 767px) {
      .budget-utilization-widget {
          min-height: 180px;
          padding: 12px 8px;
      }
      #budgetChart {
          height: 120px !important;
          width: 120px !important;
      }
  }
  
  /* Responsive Service Tabs */
  #servicesTabs {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      border-bottom: 2px solid #e5e7eb;
      gap: 8px;
      scrollbar-width: thin;
      scrollbar-color: #3b82f6 #f3f4f6;
      margin-bottom: 1rem;
  }
  #servicesTabs .nav-item {
      flex: 0 0 auto;
  }
  #servicesTabs .nav-link {
      min-width: 160px;
      text-align: center;
      padding: 10px 18px;
      font-size: 1rem;
      border-radius: 8px 8px 0 0;
      margin-right: 2px;
      background: #f3f4f6;
      color: #093FB4;
      transition: background 0.2s, color 0.2s;
      border: none;
      outline: none;
  }
  #servicesTabs .nav-link.active,
  #servicesTabs .nav-link:focus,
  #servicesTabs .nav-link:hover {
      background: #093FB4;
      color: #fff;
  }
  @media (max-width: 767px) {
      #servicesTabs {
          gap: 4px;
          margin-bottom: 0.5rem;
      }
      #servicesTabs .nav-link {
          min-width: 120px;
          font-size: 0.95rem;
          padding: 8px 10px;
      }
  }
  
  /* Modern Profile Page Viewing Styles */
  .profile-bg-modern {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    overflow: hidden;
  }
  .profile-bg-modern::before {
    content: '';
    position: absolute;
    top: 10%; left: 60%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, #667eea55 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
  }
  .profile-bg-modern::after {
    content: '';
    position: absolute;
    bottom: 5%; right: 70%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, #764ba255 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
  }
  
  .profile-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
  }
  
  .glass-effect {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px rgba(30,64,175,0.10);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 24px;
    border: 1.5px solid rgba(255,255,255,0.25);
  }
  
  .profile-card {
    padding: 48px 36px 36px 36px;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
  
  .profile-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
  }
  
  .profile-image {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    background: #f3f4f6;
    margin-bottom: 0;
    transition: box-shadow 0.3s;
  }
  .profile-image-shadow {
    box-shadow: 0 6px 32px 0 rgba(30,64,175,0.18), 0 1.5px 8px 0 rgba(30,64,175,0.10);
  }
  
  .profile-info-section {
    width: 100%;
    text-align: center;
  }
  
  .profile-name-modern {
    font-size: 2rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }
  
  .profile-field-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 14px;
  }
  .profile-field-modern i {
    color: var(--primary-color);
    font-size: 1.1rem;
  }
  
  .floating-edit-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 24px rgba(30,64,175,0.18);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .floating-edit-btn:hover, .floating-edit-btn:focus {
    background: var(--secondary-color);
    box-shadow: 0 8px 32px rgba(30,64,175,0.22);
    transform: translateY(-2px) scale(1.04);
  }
  
  @media (max-width: 600px) {
    .profile-card {
      padding: 20px 6px;
      max-width: 98vw;
    }
    .profile-container {
      padding: 10px 0;
    }
    .floating-edit-btn {
      right: 16px;
      bottom: 16px;
      padding: 12px 18px;
      font-size: 1rem;
    }
  }
  