/* New Year User Manager Styles */

.ny-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ny-modal-backdrop.show {
    opacity: 1;
}

.ny-modal-content {
    background: rgba(20, 20, 35, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    color: #fff;
}

.ny-modal-backdrop.show .ny-modal-content {
    transform: scale(1);
}

.ny-modal-header h3 {
    margin: 0 0 15px 0;
    color: #ffd700;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.ny-modal-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 25px;
}

.ny-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ny-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.ny-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.ny-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.ny-btn-confirm {
    background: linear-gradient(135deg, #ff4d4d, #c40000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.ny-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}
