.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-color: #FFD700;
    border: 3px solid black;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    z-index: 1000;
}



/* Popup */
.popup {
    position: absolute;
    bottom: 90px;
    right: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    width: 280px;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.popup::before {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 30px;
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.popup p {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.4;
}

.status-circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.open { background-color: green; }
.closed { background-color: red; }

a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.option-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.option-block i {
    font-size: 20px;
    margin-top: 4px;
}

small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #666;
}