.button-wrapper {
    text-align: center;
}
.toggle-checkbox {
    display: none;
    }

.toggle-button,
.current-day-btn {
    display: inline-block;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0;
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
    
.toggle-button:hover,
.current-day-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.toggle-button:active,
.current-day-btn:active {
    transform: scale(0.98);
}

.toggle-checkbox:checked ~ .toggle-content {
    display: block;
    animation: fadeIn 0.4s ease;
}

.toggle-checkbox:checked + .toggle-button .button-text {
    display: none;
}

.toggle-checkbox:checked + .toggle-button .button-text-checked {
    display: inline;
    }

.toggle-checkbox:not(:checked) + .toggle-button .button-text {
    display: inline;
    }

.toggle-checkbox:not(:checked) + .toggle-button .button-text-checked {
    display: none;
    }

.toggle-content {
    display: none;
    width: 100%;
}

/* Кнопка (плавающая) добавить */

.addCardBtn {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    background-color: rgb(255 0 0 / 70%);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.addCardBtn:hover {
    background-color: rgb(255 50 50 / 90%);
    transform: scale(1.05);
}
