/* Card and content */
.card-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

.header-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.10rem;
}

/* Table styles */
.table {
    /* background: #fff; */
    border-radius: 6px;
    overflow: hidden;
}

.table thead th {
    /* background-color: #f8f9fa; */
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.table tbody td {
    vertical-align: middle;
    padding: 12px 8px;
}

/* Form elements */
.form-control {
    border-radius: 4px;
    padding: 6px 12px;
}

.form-control:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.1);
}

/* Switch toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #cbd5e0;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #4361ee;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Alerts */
.alert {
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: none;
}

.alert-success {
    background-color: #f0fff4;
    color: #2f855a;
    border-left: 4px solid #48bb78;
}

.alert-info {
    background-color: #ebf8ff;
    color: #2c5282;
    border-left: 4px solid #4299e1;
}

/* parsley error */

.parsley-error {
    border: 2px solid red !important;
    border-radius: 5px;
}

.parsley-errors-list {
    color: red;
    font-size: 12px;
}


/* Video */
video {

    border-radius: 15px;
    width: 100% !important;
    height: auto !important;
}