
.btn-add-action {
    background-color: #1545aecc;
    ; /* Bright Blue */
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

    .btn-add-action:hover {
        background-color: #1D4ED8;
        color: white;
    }

/* --- Form Cards (Nearest Facilities) --- */
.facility-card {
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.facility-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.1rem;
}

.facility-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
}

.custom-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 6px;
    display: block;
}

.custom-input, .custom-select {
    background-color: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #6B7280;
    width: 100%;
}

    .custom-input::placeholder {
        color: #9CA3AF;
    }

    .custom-input:focus, .custom-select:focus {
        background-color: #ffffff;
        border-color: #3B82F6;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
        outline: none;
    }

.input-icon-wrapper {
    position: relative;
}

    .input-icon-wrapper i {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #3B82F6;
    }

/* --- Active Infrastructure Cards --- */
.active-infra-card {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 16px;
    height: 100%;
}

.infra-type-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6B7280;
    font-weight: 600;
    margin-bottom: 2px;
}

.infra-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
}

.action-icons i {
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: 8px;
}

.icon-edit {
    color: #3B82F6;
}

.icon-delete {
    color: #EF4444;
}

.stat-box {
    border-radius: 6px;
    padding: 10px 14px;
    margin-top: 15px;
}

.stat-label {
    font-size: 0.7rem;
    color: #6B7280;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1F2937;
}

.stat-unit {
    font-size: 0.7rem;
    font-weight: 500;
    color: #6B7280;
}

/* --- Theming Colors --- */
/* Green Theme */
.bg-soft-green {
    background-color: #DCFCE7;
}

.text-green {
    color: #10B981;
}

.stat-box.green {
    background: linear-gradient(90deg,#eef9f06b, #d8f0dc 100%);
}

/* Blue Theme */
.bg-soft-blue {
    background-color: #DBEAFE;
}

.text-blue {
    color: #3B82F6;
}

.stat-box.blue {
    background: linear-gradient(90deg, #dbeafe38, #dbeafe 100%);
}

/* Pink Theme */
.bg-soft-pink {
    background-color: #FCE7F3;
}

.text-pink {
    color: #EC4899;
}

.stat-box.pink {
    background: linear-gradient(90deg, #fce7f34d, #fce7f3 100%);
}

/* --- Info Alert --- */
.logistics-note {
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #F59E0B; /* Orange */
    padding: 16px 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 6px;
}

    .note-header i {
        color: #F59E0B;
        font-size: 1rem;
    }

.note-text {
    font-size: 0.8rem;
    color: #6B7280;
    margin: 0;
}

/* --- Warehouse Facilities Stat Box Fixes --- */
.active-infra-card .stat-box {
    padding: 10px 12px;
}

.active-infra-card .stat-label {
    font-size: 0.7rem !important;
    color: #6B7280 !important;
    margin-bottom: 4px !important;
}

.active-infra-card .stat-value {
    font-size: 0.85rem !important; 
    font-weight: 700 !important;
    color: #1F2937 !important; 
    line-height: 1.2 !important;
}

.active-infra-card .stat-unit {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    color: #6B7280 !important;
    margin-left: 2px;
}
/* --- Searchable Dropdown Custom Styles --- */
.dropdown-list-container {
    position: absolute;
    width: 100%;
    background: #ffffff;
    border: 1px solid #3B82F6;
    border-radius: 6px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 1050;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
}

.dropdown-item-custom {
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.1s ease;
    border-bottom: 1px solid #F3F4F6;
}

    .dropdown-item-custom:last-child {
        border-bottom: none;
    }

    .dropdown-item-custom:hover {
        background-color: #DBEAFE; /* Soft Blue hover */
        color: #1D4ED8;
    }