/* Floating Add Session Button */
.btn-add-session {
    position: fixed !important;
    bottom: 90px;
    right: 24px;
    z-index: 9999 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    color: #2c7be5;
    border: 1px solid #2c7be5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-add-session:hover {
    background: #2c7be5;
    color: #fff;
    box-shadow: 0 4px 12px rgba(44, 123, 229, 0.3);
}

.btn-add-session:active {
    transform: scale(0.96);
}

.btn-add-session svg,
.btn-add-session span {
    pointer-events: none;
}

@media (max-width: 576px) {
    .btn-add-session {
        bottom: 75px;
        right: 16px;
        padding: 10px;
        border-radius: 50%;
    }

    .btn-add-session span {
        display: none;
    }

    .btn-add-session svg {
        width: 16px;
        height: 16px;
    }
}
