/* PTO Icons Exact - CSS */

#pto-icons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.pto-icons-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 8px;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#pto-icons.active .pto-icons-options {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.pto-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 211, 192, 0.95), rgba(107, 200, 181, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: normal;
}

.pto-icon:nth-child(1) {
    animation: slideInIcon 0.4s ease-out 0.05s backwards;
}

.pto-icon:nth-child(2) {
    animation: slideInIcon 0.4s ease-out 0.1s backwards;
}

.pto-icon:nth-child(3) {
    animation: slideInIcon 0.4s ease-out 0.15s backwards;
}

.pto-icon:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.pto-icon svg {
    width: 24px;
    height: 24px;
}

.pto-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7dd3c0, #6bc8b5);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    line-height: normal;
}

.pto-toggle:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.pto-toggle:active {
    transform: scale(0.95);
}

.pto-toggle svg {
    width: 24px;
    height: 24px;
}

@keyframes slideInIcon {
    from {
        opacity: 0;
        transform: translate(15px, 15px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    #pto-icons {
        bottom: 16px;
        right: 16px;
    }

    .pto-icon {
        width: 52px;
        height: 52px;
    }

    .pto-toggle {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    #pto-icons {
        bottom: 12px;
        right: 12px;
    }

    .pto-icon {
        width: 48px;
        height: 48px;
    }

    .pto-toggle {
        width: 48px;
        height: 48px;
    }

    .pto-icon svg,
    .pto-toggle svg {
        width: 20px;
        height: 20px;
    }
}
