/* === Alcohol Price Table Tabs === */
.alcohol-price-container {
    margin: 3rem 0;
    font-family: var(--font-body);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 2rem;
    border: 1px solid #F3F4F6;
}

/* Update Banner */
.table-update-banner {
    background: #EFF6FF;
    /* Light Blue */
    border: 1px solid #DBEAFE;
    color: #1E40AF;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.table-update-banner strong {
    font-weight: 700;
}

/* Tabs Header */
.alcohol-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 2rem;
    gap: 2rem;
    width: 100%;
}

.alcohol-tabs .tab-item {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #6B7280;
    /* Gray-500 */
    padding: 0.8rem 0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    text-align: left;
    white-space: nowrap;
}

.alcohol-tabs .tab-item:hover {
    color: var(--text-dark);
}

.alcohol-tabs .tab-item.active {
    color: var(--primary);
    font-weight: 700;
}

.alcohol-tabs .tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    /* Align perfectly with border */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
}

.tab-content {
    transition: opacity 0.3s ease;
}

/* === Invoice Style Table === */
.alcohol-table {
    width: 100%;
    border-collapse: separate;
    /* Allows for border-radius on rows if needed, but here used for spacing */
    border-spacing: 0;
    font-size: 0.95rem;
    text-align: left;
    min-width: 600px;
    /* Ensure it doesn't squish too much */
}

/* Header */
.alcohol-table th {
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    color: var(--text-dark);
    font-size: 0.9rem;
    background: #fff;
    text-transform: none;
    /* Removed uppercase */
    letter-spacing: normal;
}

/* Sort Icon Simulation */
.alcohol-table th::after {
    content: ' ↕';
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-left: 5px;
    opacity: 0.5;
}

/* Rows */
.alcohol-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: middle;
    color: #4B5563;
    /* Gray-600 */
    background: #fff;
    transition: background 0.2s;
}

.alcohol-table tr:last-child td {
    border-bottom: none;
}

.alcohol-table tr:hover td {
    background: #F9FAFB;
    /* Very light gray hover */
}

/* First Column: mimicking the "File Name" look */
.alcohol-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    /* Flex to align icon */
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #F3F4F6;
    /* Re-apply border since flex might mess display */
}

.alcohol-table tr:last-child td:first-child {
    border-bottom: none;
}

/* Icon Simulation for First Column */
.alcohol-table td:first-child::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    background-color: var(--primary-soft);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF2E63' width='18' height='18'%3E%3Cpath d='M9 13h6v2H9v-2zm0-4h6v2H9V9zm0-4h6v2H9V5zm-4 14h14V3H5v16zm16 2H3V1h18v20z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Price Cell (Assumed Second Column or specific class) */
.price-cell,
.alcohol-table td:nth-child(2) {
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

/* Pill / Badge Style for extra columns if any */
.status-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    background: #ECFDF5;
    color: #065F46;
    font-weight: 600;
}

@media(max-width: 768px) {
    .alcohol-price-container {
        padding: 1rem;
        border-radius: 12px;
    }

    .alcohol-table {
        display: block;
        overflow-x: auto;
    }

    .alcohol-tabs {
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}