﻿/* ========================== DASHBOARD STYLES ========================== */
.font-bold {
    font-weight: 700 !important;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor : pointer;
}

.stat-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stat-icon-circle.sky-blue {
        background-color: #e0f7f9;
        color: #06b4c6;
    }

    .stat-icon-circle.green-light {
        background-color: #e8f5e9;
        color: #4caf50;
    }

    .stat-icon-circle.orange-light {
        background-color: #fff3e0;
        color: #ff9800;
    }

    .stat-icon-circle.purple-light {
        background-color: #f3e5f5;
        color: #7b1fa2;
    }

.task-row {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background: #fcfcfc;
    border: 1px solid #f5f5f5;
    transition: all 0.2s;
    cursor: pointer;
}

.custom-switcher {
    display: flex;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

    .custom-switcher button {
        padding: 5px 15px;
        border-radius: 10px;
        border: none;
        font-size: 0.85rem;
        font-weight: 600;
        color: #757575;
        background: transparent;
        transition: all 0.2s ease;
    }

    .custom-switcher button.active {
        background: white;
        color: #06b4c6;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

/* ============================ POPUP STYLES ============================ */
.dialog-luxe {
    border-radius: 10px !important;
    overflow: hidden;
}

.dialog-content-container {
    height: 550px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    overflow: hidden;
}

.entity-sidebar {
    background-color: #fcfcfc;
    border-right: 1px solid #f0f0f0;
    height: 100%;
    overflow-y: auto;
}

.details-view {
    background-color: white;
    height: 100%;
    overflow-y: auto;
}

.entity-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #f5f5f5;
    position: relative;
}

    .entity-card.active {
        border-color: #06b4c6;
        background: #f0fbff;
    }

        .entity-card.active .selection-indicator {
            position: absolute;
            left: 0;
            width: 4px;
            height: 60%;
            background: #06b4c6;
            border-radius: 0 5px 5px 0;
        }

.supplier-grid {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.supplier-header {
    display: grid;
    grid-template-columns: 1fr 140px;
    background-color: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.supplier-item-row {
    display: grid;
    grid-template-columns: 1fr 140px;
    padding: 15px 10px;
    border-bottom: 1px solid #f8f8f8;
    cursor: pointer;
}

    .supplier-item-row:hover {
        background: #f0fbff;
    }
