﻿/* Estilos para los botones de sweet alert */
.btn-success-border {
    color: #35cd3a; /* Verde bootstrap */
    border: 2px solid #35cd3a;
    background-color: transparent;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

    .btn-success-border:hover {
        background-color: #35cd3a;
        color: white;
    }

.btn-cancel-border {
    color: #6c757d; /* Gris bootstrap */
    border: 2px solid #6c757d;
    background-color: transparent;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

    .btn-cancel-border:hover {
        background-color: #6c757d;
        color: white;
    }

.btn-info-border {
    color: #0dcaf0; /* Azul info bootstrap */
    border: 2px solid #0dcaf0;
    background-color: transparent;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

    .btn-info-border:hover {
        background-color: #0dcaf0;
        color: white;
    }
