/* Dashboard Specific Styles */

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #E41E2A;
}

input:focus + .slider {
    box-shadow: 0 0 1px #E41E2A;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Status Cards for Dashboard */


/* .status-card {
    display: flex;
    align-items: center;
    padding: 20px;
    flex: 1;
    background-color: transparent;
    position: relative;
} */

/* .status-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #ccc;
} */

.status-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.status-icon-circle i {
    font-size: 26px;
}

.status-content {
    display: flex;
    flex-direction: column;
}

.status-label {
    /* font-size: 14px; */
    font-size: 0.825em;
    color: #9E9E9E;
    margin-bottom: 5px;
}

.status-number {
    font-size: 28px;
    font-weight: 700;
}

.status-submitted .status-icon-circle {
    background-color: #e1f7fc;
}

/* .status-submitted i {
    color: #00BEDD;
} */

.status-in-progress .status-icon-circle {
    background-color: #fdf2e5;
}

/* .status-in-progress i {
    color: #FF8039;
} */

.status-pending .status-icon-circle {
    background-color: #f6ecfc;
}

/* .status-pending i {
    color: #B466B4;
} */

.status-completed .status-icon-circle {
    background-color: #e8f8e7;
}

/* .status-completed i {
    color: #47C651;
} */
/* .status-cancelled .status-icon-circle
{
    background-color: #DC143C;
} */

.main-container {
    position: relative;
}

.create-button {
    position: absolute;
    right: 0px;
    top: -20px;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}




/* Filter Controls */
.filter-controls {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #E9E9E9;
}

.filter-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.filter-item label {
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
}

.filter-item .form-select,
.filter-item .form-control {
    max-width: 200px;
    height: 34px;
    font-size: 14px;
}

.btn-create, .btn-download {
    background-color: #E41E2A;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 15px;
    font-size: 14px;
}

/* Status Pills */
.status-pill {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: 500;
}

/* .status-container .status-pending,
.status-container .status-submitted,
.status-container .status-cancelled,
.status-container .status-completed,
.status-container .status-in-progress {
    background-color: #fff;
} */

.action-icon {
    color: #999;
    cursor: pointer;
    font-size: 18px;
}

@media (max-width: 767px) {
    /* .status-container {
        flex-wrap: wrap;
    }
    
    .status-card {
        width: calc(50% - 10px);
        flex: none;
        margin-bottom: 10px;
    } */
    
    .filter-controls {
        flex-direction: column;
    }
    
    .filter-item {
        margin-bottom: 10px;
    }
}