body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #f7fafc 0%, #e3f9e5 100%);
    margin: 0;
    padding: 0;
    color: #222;
    min-height: 100vh;
}
.hero {
    position: relative;
    background: #43cea2;
    color: #fff;
    padding: 4rem 0 3rem 0;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.cta-btn {
    display: inline-block;
    background: #43cea2;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(24,90,157,0.10);
    transition: background 0.15s, transform 0.15s;
}
.cta-btn:hover {
    background: #185a9d;
    transform: translateY(-2px) scale(1.04);
}
main {
    max-width: 1200px;
    margin: -3rem auto 2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(24,90,157,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}
.produkty-section {
    grid-column: 1/2;
}
.produkty-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #185a9d;
}
.produkty-view-switch {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}
.produkty-view-btn {
    background: #e3f9e5;
    color: #185a9d;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.produkty-view-btn.active, .produkty-view-btn:hover {
    background: #43cea2;
    color: #fff;
}
.produkty-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.produkt-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(67,206,162,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s, transform 0.15s;
    position: relative;
    min-height: 370px;
}
.produkt-card:hover {
    box-shadow: 0 4px 16px rgba(24,90,157,0.12);
    transform: translateY(-2px) scale(1.01);
}
.produkt-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #e3f9e5;
}
.produkt-info {
    flex: 1;
    padding: 1.2rem 1.2rem 0.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.produkt-nazwa {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #185a9d;
}
.produkt-cena {
    font-size: 1.1rem;
    color: #43cea2;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.produkt-jednostka {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1rem;
}
.produkt-btn {
    background: #43cea2;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 1px 4px rgba(67,206,162,0.08);
}
.produkt-btn:hover, .produkt-btn.added {
    background: #185a9d;
    color: #fff;
    transform: scale(1.04);
}
/* Widok listy */
.produkty-list.list-view {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.produkt-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(67,206,162,0.07);
    padding: 0.7rem 1.2rem;
    transition: box-shadow 0.12s;
}
.produkt-row:hover {
    box-shadow: 0 2px 8px rgba(24,90,157,0.10);
}
.produkt-row-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1.2rem;
    background: #e3f9e5;
}
.produkt-row-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.produkt-row-nazwa {
    font-size: 1.1rem;
    font-weight: 600;
    color: #185a9d;
}
.produkt-row-cena {
    font-size: 1rem;
    color: #43cea2;
    font-weight: 700;
}
.produkt-row-jednostka {
    font-size: 0.95rem;
    color: #888;
}
.produkt-row-btn {
    background: #43cea2;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 1.2rem;
    transition: background 0.15s, transform 0.15s;
}
.produkt-row-btn:hover, .produkt-row-btn.added {
    background: #185a9d;
    color: #fff;
    transform: scale(1.04);
}
.koszyk-panel {
    background: #f7fafc;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(24,90,157,0.05);
    padding: 2rem 1.5rem;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    min-width: 320px;
    max-width: 400px;
    z-index: 3;
}
.koszyk-panel h2 {
    color: #185a9d;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.najblizsza-dostawa {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: #1565c0;
}
.najblizsza-dostawa strong {
    color: #0d47a1;
    font-weight: 600;
}
.koszyk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}
.koszyk-list li {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(67,206,162,0.06);
    margin-bottom: 1rem;
    padding: 1rem 0.7rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    position: relative;
}
.koszyk-list button {
    background: #ff5252;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.koszyk-list button:hover {
    background: #d32f2f;
    transform: scale(1.1);
}
#suma {
    font-weight: bold;
    font-size: 1.15rem;
    color: #185a9d;
    margin-top: 1rem;
    text-align: right;
}
.zamowienie-section {
    grid-column: 1/3;
    margin-top: 2.5rem;
    background: #f7fafc;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(24,90,157,0.05);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.zamowienie-section h2 {
    color: #185a9d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}
.form-group label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #185a9d;
}
.form-group input[type="text"],
.form-group input[type="tel"] {
    padding: 0.7rem 1rem;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    transition: border 0.15s;
}
.form-group input:focus {
    border: 1.5px solid #43cea2;
    outline: none;
}
.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}
.submit-btn {
    background: #43cea2;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 1px 4px rgba(67,206,162,0.08);
}
.submit-btn:hover {
    background: #185a9d;
    transform: scale(1.04);
}
.potwierdzenie {
    display: none;
    color: #43cea2;
    font-weight: 700;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}
footer {
    background: #185a9d;
    color: #fff;
    text-align: center;
    padding: 2rem 0 1.2rem 0;
    border-radius: 18px 18px 0 0;
    margin-top: 2rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1rem;
}
.agency {
    font-weight: 700;
    color: #43cea2;
}
.ilosc-kontrolki {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.ilosc-btn {
    background: #e3f9e5;
    color: #185a9d;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, transform 0.12s;
    box-shadow: 0 1px 2px rgba(67,206,162,0.06);
}
.ilosc-btn:hover {
    background: #43cea2;
    color: #fff;
    transform: scale(1.08);
}
.ilosc-wartosc {
    min-width: 24px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #185a9d;
}
.dostawa-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}
.dostawa-options label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #222;
    margin: 0;
    line-height: 1.3;
}
@media (min-width: 700px) {
    .dostawa-options {
        align-items: flex-start;
    }
}
@media (max-width: 1100px) {
    main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0.5rem;
    }
    .koszyk-panel {
        position: static;
        max-width: 100%;
        margin-top: 2rem;
    }
    .zamowienie-section {
        grid-column: 1/2;
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
}
@media (max-width: 700px) {
    .hero h1 {
        font-size: 2rem;
    }
    .produkty-list, .produkty-list.list-view {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    main {
        padding: 0.5rem;
    }
    .koszyk-panel, .zamowienie-section {
        padding: 1.2rem 0.5rem;
    }
} 

/* Modern Admin Panel Styles */
.admin-login {
    max-width: 450px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: white;
}

.admin-login h2 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.admin-login input[type="password"] {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    margin: 0.7rem 0 1.5rem 0;
    transition: all 0.3s ease;
}

.admin-login input[type="password"]:focus {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.admin-panel {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8fafc;
    min-height: 100vh;
}

.admin-logout {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
    z-index: 1000;
}

.admin-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.admin-panel h2 {
    color: #2d3748;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.admin-tab-btn {
    background: transparent;
    color: #718096;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-tab-btn:hover {
    background: #f7fafc;
    color: #4a5568;
    transform: translateY(-1px);
}

.admin-tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

/* Modern Orders Container */
.orders-container {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.order-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.order-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.order-header:hover {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.order-summary {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
}

.order-date {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 700;
    min-width: 180px;
}

.order-customer {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    min-width: 250px;
}

.order-status {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.order-toggle {
    font-size: 1.5rem;
    color: #718096;
    transition: all 0.3s ease;
    margin-left: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.order-details {
    display: none;
    padding: 2rem;
    background: white;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.order-info h4,
.order-products h4 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.8rem;
    position: relative;
}

.order-info h4::after,
.order-products h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.order-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4a5568;
    font-size: 1rem;
}

.order-info p strong {
    color: #2d3748;
    font-weight: 600;
}

.payment-status {
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.payment-status:contains("✓") {
    background: #c6f6d5;
    color: #22543d;
}

.payment-status:contains("✗") {
    background: #fed7d7;
    color: #742a2a;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-item {
    padding: 1rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s ease;
}

.product-item:hover {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    transform: translateX(4px);
}

/* Modern Status Select */
.status-select {
    padding: 0.8rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    font-weight: 600;
    background: white;
}

.status-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    transform: translateY(-1px);
}

.status-select.status-dospakowania {
    background: linear-gradient(135deg, #fef5e7 0%, #fed7aa 100%);
    border-color: #f6ad55;
    color: #744210;
}

.status-select.status-spakowane {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    border-color: #4fd1c7;
    color: #234e52;
}

.status-select.status-czeka {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border-color: #fc8181;
    color: #742a2a;
}

.status-select.status-zrealizowane {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    border-color: #68d391;
    color: #22543d;
}

/* Modern Table for Producers */
.admin-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.admin-orders-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.admin-orders-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.admin-orders-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
    font-size: 0.95rem;
    color: #4a5568;
}

.admin-orders-table tbody tr {
    transition: all 0.3s ease;
}

.admin-orders-table tbody tr:hover {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    transform: translateY(-1px);
}

.admin-orders-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.admin-orders-table tbody tr:nth-child(even):hover {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

/* Loading and Error States */
.admin-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #718096;
    font-style: italic;
    font-size: 1.1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.admin-error {
    text-align: center;
    padding: 3rem 2rem;
    color: #e53e3e;
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border-radius: 20px;
    margin: 1rem 0;
    font-weight: 600;
    border: 2px solid #fc8181;
}

.admin-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #718096;
    background: white;
    border-radius: 20px;
    border: 2px dashed #cbd5e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.admin-empty::before {
    content: "📋";
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .order-summary {
        gap: 2rem;
    }
    
    .order-date,
    .order-customer {
        min-width: auto;
    }
}

@media (max-width: 900px) {
    .admin-panel {
        padding: 1rem;
    }
    
    .order-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .order-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-status {
        justify-content: flex-start;
    }
    
    .admin-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .admin-tab-btn {
        width: 100%;
    }
    
    .admin-logout {
        position: static;
        margin-bottom: 2rem;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .admin-login {
        margin: 2rem 1rem;
        padding: 2rem;
    }
    
    .order-header {
        padding: 1.5rem;
    }
    
    .order-details {
        padding: 1.5rem;
    }
    
    .admin-orders-table {
        font-size: 0.9rem;
    }
    
    .admin-orders-table th,
    .admin-orders-table td {
        padding: 1rem 0.8rem;
    }
}

/* Animation for status changes */
.status-select {
    transition: all 0.3s ease;
}

.status-select:focus {
    transform: scale(1.02);
}

/* Hover effects for better interactivity */
.order-card:hover .order-toggle {
    transform: scale(1.1);
    background: #667eea;
    color: white;
}

/* Focus states for accessibility */
.admin-tab-btn:focus,
.status-select:focus,
.admin-logout:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
} 

/* Modern Admin Orders List */
.orders-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.order-list-row {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(102,126,234,0.08);
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    transition: box-shadow 0.3s, border 0.3s;
    position: relative;
}
.order-list-row:hover {
    box-shadow: 0 8px 32px rgba(102,126,234,0.13);
    border-color: #667eea;
}
.order-list-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: linear-gradient(90deg, #f7fafc 60%, #e9ecef 100%);
    transition: background 0.2s;
}
.order-list-main {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
}
.order-list-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3748;
    min-width: 140px;
}
.order-list-date {
    font-size: 1rem;
    color: #718096;
    min-width: 120px;
}
.order-list-status {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    margin-right: 1.5rem;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(102,126,234,0.08);
    letter-spacing: 0.5px;
}
.order-list-summarytext {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
    background: #f7fafc;
    border-radius: 12px;
    padding: 0.4rem 1rem;
    margin-left: 1rem;
}
.order-list-arrow {
    font-size: 1.5rem;
    color: #667eea;
    margin-left: 2rem;
    transition: transform 0.2s;
    user-select: none;
}
.order-list-row.expanded .order-list-arrow {
    transform: rotate(180deg);
}
.order-list-details {
    display: none;
    background: #f8fafc;
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    border-top: 1.5px solid #e2e8f0;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.order-list-details-inner {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.order-list-details-col {
    flex: 1 1 220px;
    min-width: 220px;
    font-size: 1rem;
    color: #4a5568;
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(102,126,234,0.06);
    margin-bottom: 1rem;
}
.order-list-details-col b {
    color: #2d3748;
}
.order-list-products {
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 1.2rem;
    list-style: disc;
}
.order-list-products li {
    margin-bottom: 0.4rem;
    font-size: 1rem;
    color: #2d3748;
}
.order-list-status-edit {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.order-list-status-edit label {
    font-weight: 600;
    margin-right: 0.5rem;
}
.dostawa-settings {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}
.dostawa-settings h3 {
    color: #185a9d;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.dostawa-form {
    margin-bottom: 2rem;
}
.dostawa-form .form-group {
    margin-bottom: 1.5rem;
}
.dostawa-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #185a9d;
}
.dostawa-form input[type="date"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.15s;
}
.dostawa-form input[type="date"]:focus {
    outline: none;
    border-color: #185a9d;
    box-shadow: 0 0 0 2px rgba(24,90,157,0.1);
}
.dostawa-form .submit-btn {
    background: #43cea2;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    width: 100%;
}
.dostawa-form .submit-btn:hover {
    background: #3bb890;
}
.dostawa-info {
    background: #f7fafc;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #43cea2;
}
.dostawa-info p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}
@media (max-width: 900px) {
    .orders-list-modern {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    .order-list-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem 1rem;
    }
    .order-list-main {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .order-list-details {
        padding: 1.2rem 1rem 1.5rem 1rem;
    }
    .order-list-details-inner {
        flex-direction: column;
        gap: 1rem;
    }
} 