.primary-color {
    color: #1330C5;
}

/* input field style  */
.form-control,
.form-select {
    background-color: #E6E6E8 !important;
    /* Light gray background */
    border: none;
    padding: 8px 15px !important;
    border-radius: 8px !important;
    font-size: 12px;
}

.upload-area {
    background-color: #e9ecef;
    border: 2px dashed #ced4da;
    border-radius: 4px;
    padding: 40px;
    text-align: center;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
}

/* table style  */
.status-badge {
    font-size: 0.75rem;
    font-weight: 500;
}

.status-active {
    background: #dcfce7 !important;
    color: #166534 !important;
}

.status-inactive {
    background: #fee2e2 !important;
    color: #991b1b !important;
}

.serial-number {
    font-weight: 500;
    color: #6c757d;
}




.time-tabs .nav-pills .nav-link {
    border-radius: 25px;
    padding: 8px 64px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e9ecef;
    color: #6c757d;
    background: white;
    margin-right: 15px;
    border: 1px solid #E63946;
}

.time-tabs .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #E63946, #E63946);
    border-color: #E63946;
    color: white;
}

.metrics-container {
    background: linear-gradient(135deg, #1330C5, #4f7de2);
    border-radius: 20px;
    padding: 30px 20px;
    color: white;
    margin-top: 20px;
}

.metric-card {
    text-align: center;
    padding: 0 10px;
}

.metric-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.metric-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.metric-change {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.metric-change.positive {
    color: #4ade80;
}

.divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    height: 60px;
    margin: 0 auto;
}