﻿/*/////////////*/
/*/////////////*/
/*/////////////*/
/*/////////////*/

.modern-btn {
    height: 32px; /* feste Höhe */
    line-height: 32px; /* zentriert den Text vertikal */
    padding: 0 32px; /* nur horizontales Padding */

    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
 /*   padding: 14px 32px; */
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    display: inline-block;
    text-align: center;
}

    .modern-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
        background: linear-gradient(135deg, #4f8df9, #1e4ed8);
    }

    .modern-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
