.reorder-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.reorder-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 400px;
    max-width: 90%;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease-in-out;
}

.reorder-modal-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.countdown {
    font-size: 22px;
    font-weight: bold;
    color: #c00;
}

.progress-bar-container {
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    height: 10px;
    margin: 15px 0;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #007bff, #0056b3);
    border-radius: 5px;
    transition: width 1s linear;
}

.modal-subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.go-now-button {
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    transition: background 0.3s ease-in-out;
}

.go-now-button:hover {
    background-color: #218838;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
