/**
 * ============================================================
 * PDF Viewer System
 * Fájl: pdf-button.css
 * Verzió: 1.0.0
 * Dátum: 2026-08-04
 * ============================================================
 */

/* PDF gomb */

.pdf-button{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:15px 30px;
    color:inherit;
    text-decoration:none;
    cursor:pointer;
    border:2px solid #ddd;
    border-radius:50px;
    background:#fff;
    box-shadow:0 3px 8px rgba(0,0,0,.12);
    transition:all .18s ease;
    user-select:none;
}

/* Egér fölé */

.pdf-button:hover{
    border-color:#78B0C1;
    box-shadow:0 6px 14px rgba(0,0,0,.18);
    transform:translateY(-2px);
}

/* Kattintás */

.pdf-button:active{
    transform:translateY(1px);
    box-shadow:inset 0 2px 5px rgba(0,0,0,.18);
}

/* Ikon */

.pdf-button-icon{
    width:36px;
    height:auto;
    flex-shrink:0;
}

/* Szöveg */

.pdf-button-text{
    font-size:16px;
    font-weight:normal;
}