.dc-price-table-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Branch Selection Styles */
.dc-branch-selection {
    text-align: center;
    padding: 3rem 1rem;
}

.dc-branch-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.dc-branch-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.dc-branch-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dc-branch-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
}

.dc-branch-btn .branch-icon {
    font-size: 2.5rem;
}

.dc-branch-btn .branch-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Main Content Styles */
.dc-main-content {
    animation: fadeIn 0.5s ease;
}

.dc-selected-branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.dc-selected-branch-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.dc-change-branch-btn {
    background: white;
    border: 2px solid #2196F3;
    color: #2196F3;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dc-change-branch-btn:hover {
    background: #2196F3;
    color: white;
}

.dc-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dc-tab {
    padding: 0.75rem 2rem;
    background: #f5f5f5;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.dc-tab:hover {
    background: #e0e0e0;
}

.dc-tab.active {
    background: #000;
    color: #fff;
}

.dc-table-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.dc-table-content.active {
    display: block;
}

.dc-no-items {
    text-align: center;
    padding: 3rem;
    color: #999;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dc-table-responsive {
    overflow-x: auto;
}

.dc-price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.dc-price-table thead {
    background: #f8f9fa;
}

.dc-price-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dc-price-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.dc-price-table tbody tr:hover {
    background-color: #f8f9fa;
}

.dc-price-table tbody tr:last-child {
    border-bottom: none;
}

.dc-price-table td {
    padding: 1rem;
}

.dc-item-name {
    font-weight: 500;
    color: #333;
}

.dc-item-price {
    font-weight: 600;
    color: #2196F3;
    font-size: 1.1rem;
}

.dc-item-action {
    text-align: right;
}

.dc-add-to-cart {
    background: #2196F3;
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dc-add-to-cart:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.dc-add-to-cart:active {
    transform: translateY(0);
}

.dc-add-to-cart.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dc-branch-title {
        font-size: 1.5rem;
    }
    
    .dc-branch-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dc-selected-branch-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dc-selected-branch-name {
        font-size: 1.2rem;
    }
    
    .dc-price-table {
        font-size: 0.9rem;
    }
    
    .dc-price-table th,
    .dc-price-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .dc-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .dc-add-to-cart {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .dc-price-table thead {
        display: none;
    }
    
    .dc-price-table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #f0f0f0;
        border-radius: 8px;
    }
    
    .dc-price-table td {
        padding: 0.5rem 0;
        border: none;
    }
    
    .dc-item-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .dc-item-price {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .dc-item-action {
        text-align: left;
    }
    
    .dc-add-to-cart {
        width: 100%;
        padding: 0.75rem;
    }
}