.role-button {
    position: relative;
    padding: 2.5rem 2rem;
    border: 3px solid #e0e0e0;
    border-radius: 20px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.role-button:hover {
    transform: translateY(-5px);
    border-color: #56a6a9;
    box-shadow: 0 10px 30px rgba(69, 132, 134, 0.2);
    background: linear-gradient(135deg, #f8fffd 0%, #ffffff 100%);
}

.role-button:active {
    transform: translateY(-2px);
}

.role-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #11aeae 0%, #56a6a9 100%);
    color: white;
}

.role-icon.rol-empleado {
    background: linear-gradient(135deg, #A6DECC 0%, #5fbea4 100%);
}

.role-icon.rol-gestor {
    background: linear-gradient(135deg, #49E3E3 0%, #56a6a9 100%);
}

.role-icon.sm {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.role-button:hover .role-icon {
    transform: scale(1.1) rotate(5deg);
}

.role-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    transition: color 0.3s ease;
}

.role-button:hover .role-title {
    color: #56a6a9;
}

.role-description {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
    text-align: center;
}

.modal-body {
    padding: 2rem;
}

.modal-header {
    border-bottom: 2px solid #f0f0f0;
    padding: 1.5rem 2rem;
}

.modal-title {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .role-button {
        padding: 2rem 1.5rem;
    }

    .role-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .role-title {
        font-size: 1.25rem;
    }
}