

#content-wrapper {
    min-height: 100vh;
    padding: 20px 30px;
}

.card-header {
    background: linear-gradient(90deg, #0052cc, #007bff);
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead {
    background-color: #007bff;
    color: white;
    text-align: center;
}

.table th, .table td {
    vertical-align: middle !important;
    text-align: center;
}

.table-hover tbody tr:hover {
    background-color: #f0f8ff;
    transition: 0.2s;
}

#searchInput {
    border-radius: 30px;
    padding-left: 15px;
    border: 1px solid #d0d0d0;
}

#searchInput:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}



.badge-active {
    background-color: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
}

.badge-inactive {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
}

.btn-upgrade {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 6px 16px;
    transition: 0.3s;
}

.btn-upgrade:hover {
    opacity: 0.85;
}

.badge-success {
  background-color: #28a745;
  color: white;
}

.badge-danger {
  background-color: #dc3545;
  color: white;
}

#wrapper {
  min-height: 100vh;
}

#content-wrapper {
  margin-left: 250px;
  transition: margin-left 0.3s;
  padding: 20px;
}

#content-wrapper.sidebar-collapsed {
  margin-left: 70px;
}
