/**
 * Price Sheet Block Styles
 */

.pricesheet .container {
    border-radius: var(--border-radius-default, 4px);
    background: #F5F5F5;
    padding: var(--container-gap-default, 32px) var(--drawer-hr-padding, 32px);
    max-width: 1400px;
}

.pricesheet-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.pricesheet-loading {
    color: var(--color-muted-foreground);
    padding: var(--space-8) 0;
}

.pricesheet-auth-message a {
    color: var(--color-navy, #00205B);
    font-weight: 600;
    text-decoration: underline;
}

.pricesheet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.pricesheet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    padding: 12px 16px;
    background: #fff;
    border-right: 2px solid #FF8200;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricesheet-item-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.pricesheet-item-badge {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 24px;
    background: var(--color-navy, #00205B);
    border-radius: 6px;
    flex-shrink: 0;
    min-width: 52px;
    color: #fff;
}

.pricesheet-item-badge svg {
    width: 20px;
    height: 20px;
}

.pricesheet-item-ext {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.pricesheet-item-title {
    font-family: var(--font-heading);
    font-size: var(--text-heading-sm, 24px);
    font-weight: 700;
    color: var(--color-foreground, #171717);
    line-height: 1.1;
}

.pricesheet-item-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.pricesheet-item-date {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricesheet-item-date-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--color-foreground, #171717);
    line-height: 1.4;
}

.pricesheet-item-date-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-foreground, #171717);
    line-height: 1.2;
}

.pricesheet-item-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #F5F5F5;
    border: 1px solid #D4D4D4;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #171717;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.pricesheet-item-download:hover {
    background: #e8e8e8;
}

@media (max-width: 768px) {
    .pricesheet-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pricesheet-item-right {
        width: 100%;
        justify-content: space-between;
        gap: 16px;
    }

    .pricesheet-item-download {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .pricesheet-item-left {
        gap: 16px;
    }

    .pricesheet-item-title {
        font-size: 18px;
    }
}
