﻿* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dashboard-orders {
    width: 100%;
    padding: 15px;
}

.orders-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.order-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .order-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        border-color: #4a6bff;
    }

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

    .order-header h3 {
        margin: 0;
        color: #2c3e50;
        font-size: 17px;
        font-weight: 600;
    }

.status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

    .status.delivered {
        background-color: #e6f7ee;
        color: #0a7c42;
        border: 1px solid #a3e6c0;
    }

    .status.processing {
        background-color: #ebf3ff;
        color: #2c6de9;
        border: 1px solid #b8d1ff;
    }

    .status.cancelled {
        background-color: #feecec;
        color: #e63946;
        border: 1px solid #f8b8b8;
    }

.order-details {
    margin-bottom: 15px;
}

    .order-details p {
        margin: 8px 0;
        color: #555;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
    }

    .order-details strong {
        color: #333;
        font-weight: 500;
    }

.order-products {
    margin: 12px 0;
    flex-grow: 1;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
}

    .product-item:last-child {
        border-bottom: none;
    }

    .product-item img {
        width: 45px;
        height: 45px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 12px;
        border: 1px solid #eee;
    }

.product-info {
    flex-grow: 1;
}

.product-name {
    font-size: 14px;
    margin: 0;
    color: #333;
    font-weight: 500;
}

.product-meta {
    font-size: 12px;
    color: #777;
    margin: 4px 0 0;
    display: flex;
    justify-content: space-between;
}

.view-details-btn {
    background-color: #4a6bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .view-details-btn:hover {
        background-color: #3a56d4;
    }

@media (max-width: 768px) {
    .orders-container {
        grid-template-columns: 1fr;
    }

    .order-card {
        padding: 15px;
    }
}
