﻿.select2 {
    width: 100% !important;
}

.input-group-text {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.botao-login {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.botao-login.sms {
    background-color: #007bff;
}

.botao-login.whatsapp {
    background-color: #25D366;
}

.toast-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 3000;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    background-color: #dc3545; /* vermelho */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    opacity: 0.95;
    transition: opacity 0.3s ease-in-out;
}

.d-none {
    display: none;
}

.popup-container {
    padding: 20px;
    font-family: Arial, sans-serif;
    background: white;
    border-radius: 8px;
    max-width: 400px;
    text-align: left;
}

.popup-container h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.popup-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-container li {
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    background: #f8f9fa;
    font-weight: bold;
    margin-bottom: 8px;
    transition: background 0.2s ease-in-out;
}

.popup-container li:hover {
    background: #e0e0e0;
}

.popup-buttons {
    margin-top: 20px;
    text-align: right;
}

.btn-cancel {
    background: #d32f2f;
    color: white;
    font-weight: bold;
    border: none;
    padding: 08px 15px;
    border-radius: 6px;
    cursor: pointer;
}

    .btn-cancel:hover {
        background: #b71c1c;
    }

.modal-custom {
    display: flex;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5); /* fundo escurecido */
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.modal-custom.d-none {
    display: none !important;
}

.modal-content-custom {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    min-width: 320px;
    max-width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
    animation: modalShow 0.2s;
}

keyframes modalShow {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    background: none;
    border: none;
}

.close-btn:hover {
    color: #d32f2f;
}
