* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: white;
    min-height: 100vh;
}

.header {
    background-color: #1a1a1a;
    padding: 10px;
    text-align: center;
}

.time {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.date {
    font-size: 1.2rem;
    font-weight: 300;
    color: #aaa;
}

.table-title {
color: white;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 10px 20px 10px 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #444;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.table-container {
    padding: 20px;
    padding-top: 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
}

th {
    background-color: #444;
    padding: 15px;
    text-align: left;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 2px solid #555;
}

td {
    padding: 15px;
    border-bottom: 1px solid #444;
}

tr:hover {
    background-color: #3a3a3a;
}

.type-icon {
    width: 24px;
    height: 24px;
    background-color: #d4621a;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.type-icon.truck {
    background-color: #4a9eff;
}

.type-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 2px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-green {
    background-color: #4caf50;
}

.status-orange {
    background-color: #ff9800;
}

.status-red {
    background-color: #f44336;
}

.cmd-code {
    color: white;
    font-weight: 500;
}

.cmd-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.cmd-dot.green {
    background-color: #4caf50;
}

.cmd-dot.orange {
    background-color: #ff9800;
}

.cmd-dot.red {
    background-color: #f44336;
}

.colis-center {
    text-align: center;
}

.center{
    text-align: center;
}
.quantity-badge {
    background-color: #f44336;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin: 2px 0;
}

.mobile-view {
    display: none;
}

.card {
    background-color: #333;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #4caf50;
}

.card.orange {
    border-left-color: #ff9800;
}

.card.red {
    border-left-color: #f44336;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-title {
    font-weight: 500;
    font-size: 1.1rem;
}

.card-date {
    color: #aaa;
    font-size: 0.9rem;
}

.card-cmd {
    margin-bottom: 10px;
}

.card-products {
    margin-bottom: 10px;
}

.card-product {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.packages-count {
    color: #aaa;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .time {
        font-size: 2.5rem;
    }

    .date {
        font-size: 1rem;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .header {
        padding: 15px;
    }

    .table-container {
        padding: 15px;
        padding-top: 0;
    }

    .table-title {
    margin: 5px 15px 10px 15px;
        font-size: 0.7rem;
    }
}