/* Vendor Page Styling */
.vendor-disabled-row {
    opacity: 0.65;
    background: #f9eaea;
}

.badge-disabled {
    background: #d9534f;
    color: #fff;
    margin-left: 4px;
    font-size: 0.92em;
}

.entity-table td, .entity-table th {
    vertical-align: middle !important;
    white-space: nowrap;
}

/* Icon-only buttons, no background */
.action-btns {
    display: flex;
    flex-wrap: wrap;
}

.action-btns .btn-ico {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    color: #1976d2 !important; /* Uniform blue color for all icons */
    box-shadow: none;
    transition: color 0.15s;
    min-width: 32px;
    min-height: 32px;
}

.action-btns .btn-ico:disabled { 
    opacity: 0.4; 
    cursor: not-allowed; 
}

.action-btns .btn-ico i {
    color: inherit !important;
    font-size: 18px;
}

.action-btns .btn-ico:hover,
.action-btns .btn-ico:focus {
    color: #0d47a1 !important; /* Darker blue on hover/focus */
}

@media (max-width: 600px) {
    .entity-header h2 { 
        font-size: 1.2em; 
    }
    .action-btns .btn-ico {
        font-size: 12px;
        min-width: 24px;
        min-height: 24px;
        padding: 2px 4px;
    }
    .action-btns .btn-ico i {
        font-size: 14px;
    }
}