.tracking-container{
    padding: 32px 0 32px 0;
}
.track-title {
    color: #1d3557;
    text-align: center;
    margin-bottom: 20px;
}
.tracking-section {
    margin-bottom: 20px;
}
.tracking-input {
    display: flex;
    margin-bottom: 15px;
}
#container-number {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}
.btn {
    padding: 10px 15px;
    background-color: #1d3557;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #2c4268;
}
#result {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
}
.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.result-item {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
}
.result-label {
    font-weight: bold;
    color: #1d3557;
    margin-bottom: 5px;
    display: block;
}
.error {
    color: #d9534f;
    background-color: #f2dede;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}
.status-empty { 
    background-color: #fff3cd; 
    color: #856404; 
}
.status-loaded { 
    background-color: #d4edda; 
    color: #155724; 
}
.status-arrived { 
    background-color: #d1ecf1; 
    color: #0c5460; 
}
.status-delivered { 
    background-color: #d4edda; 
    color: #155724; 
}