.cot-tracking-container {
    text-align: center;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.cot-tracking-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
}

.cot-track-button {
    background: #28a745;
    color: white;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    animation: blink-effect 1s infinite;
}

.cot-track-button:hover {
    background: #218838;
}

.cot-result-status {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 12px;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}

.cot-customer-info {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
}

.cot-customer-info h2 {
    font-size: 26px;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    background: #d1ecf1;
}

.cot-order-status h3 {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 12px;
    font-size: 22px;
    text-align: center;
    margin-top: 20px;
}

.cot-order-notes {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
}

.cot-notes-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    text-align: center;
}

.cot-notes-table th, .cot-notes-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.cot-notes-table th {
    background: #007bff;
    color: white;
}

.cot-notes-table tr:nth-child(even) {
    background: #f2f2f2;
}

.green-blink {
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    animation: blink-effect 1s infinite;
}

.green-blink:hover {
    background: #218838;
}

@keyframes blink-effect {
    50% {
        opacity: 0.5;
    }
}