﻿body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #7A0019 !important;
}

.logo {
    height: 50px;
}

.card {
    border-radius: 10px;
    padding: 20px;
}

.table th {
    background-color: #7A0019 !important;
    color: white;
}

.btn-primary {
    background-color: #B58E3A !important;
    border: none;
}

    .btn-primary:hover {
        background-color: #8C6A2D !important;
    }

/* Estilos para la animación de la palomita */
#success-message {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Color de fondo verde */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    #success-message.show {
        display: flex;
        opacity: 1;
    }

    /* Palomita animada */
    #success-message .checkmark {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: white;
        color: #4CAF50;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-right: 10px;
        animation: checkmarkAnimation 1s ease-out forwards;
    }

@keyframes checkmarkAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
