/* Kontener na przyciski */
.phonebutton-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    z-index: 99999;
}

/* Ogólny styl dla przycisków */
.phonebutton-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #2f7789;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out, transform 0.2s;
    font-family: Arial Black;
	font-weight: 300
}

/* Styl dla telefonu */
.phonebutton-call {
    background-color: #ff6b30;
}

/* Efekt hover dla telefonu */
.phonebutton-call:hover {
    background-color: #2f7789;
}

/* Efekt hover dla całego przycisku */
.phonebutton-button:hover {
    transform: scale(1.1);
}

/* Ikona w przycisku */
.phonebutton-button i {
  font-size: 30px;
}

/* Fade-in */
.phonebutton-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

