#wrapper {
    min-height: 100vh;
    background-color: #f8f9fa;
  }

  #content-wrapper {
    margin-left: 250px;
    transition: margin-left 0.3s ease-in-out;
    padding: 20px;
    background-color: #ffffff;
  }

  .upgrade-btn {
    min-width: 120px;
  }

  .feature-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .feature-box input[type="checkbox"] {
    margin: 0;
  }

  .feature-box:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
  }

  #searchResultsContainer {
    max-height: 400px;
    overflow-y: auto;
  }

  .list-group-item {
    transition: background-color 0.2s ease;
  }

  .list-group-item:hover {
    background-color: #f1f9ff;
  }

  .select-user-btn {
    min-width: 80px;
  }


h3.page-title {
    color: #1a237e;
    font-weight: 600;
}

.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.card-header {
    background: #f1f3f4;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
}

table {
    font-size: 15px;
}

thead th {
    background-color: #e9ecef;
    color: #212529;
}

tbody tr:hover {
    background-color: #f6f8fa;
}

td.text-success {
    color: #16a34a !important;
    font-weight: bold;
}

td.text-danger {
    color: #dc2626 !important;
    font-weight: bold;
}

.badge-status {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 8px;
}

.badge-status.active {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-status.expired {
    background-color: #fee2e2;
    color: #991b1b;
}

.container {
    max-width: 1100px;
}


/* ===== HEADER ===== */
.page-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.page-header h3 {
    font-weight: 600;
    color: #1a237e;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== CARD STYLE ===== */
.report-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.report-card .card-header {
    border-bottom: 1px solid #eee;
    background: #fafafa;
    font-weight: 600;
    color: #333;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.report-card .table th {
    background-color: #f2f4f7;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

.report-card .table td {
    vertical-align: middle;
    font-size: 0.95rem;
}

.table-hover tbody tr:hover {
    background-color: #f8fafc;
}

.badge-status {
    font-size: 0.85rem;
    border-radius: 0.5rem;
    padding: 0.35rem 0.65rem;
}

.badge-active {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-inactive {
    background-color: #fee2e2;
    color: #991b1b;
}

.text-success {
    color: #16a34a !important;
}

.text-danger {
    color: #dc2626 !important;
}

.section-title {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}