/* 社餐录菜模块浮动按钮样式 - 褐色主题 */

/* 浮动按钮组样式 */
.publicInput_button-group {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* 浮动按钮样式 */
.publicInput_floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #8B4513; /* 褐色 */
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.publicInput_floating-button:hover {
    background-color: #A0522D; /* 深褐色 */
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.publicInput_floating-button:active {
    background-color: #654321; /* 更深的褐色 */
    transform: scale(0.95);
}

/* 模态框样式 */
.publicInput_modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.publicInput_modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
}

.publicInput_modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.publicInput_modal-close:hover {
    color: #000;
}

.publicInput_modal-buttons {
    margin-top: 20px;
    text-align: right;
}

.publicInput_modal-button {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    font-size: 14px;
    margin-left: 10px;
}

.publicInput_modal-cancel {
    background-color: #f1f1f1;
    color: #333;
}

.publicInput_modal-confirm {
    background-color: #8B4513; /* 褐色 */
    color: white;
}

.publicInput_modal-cancel:hover {
    background-color: #ddd;
}

.publicInput_modal-confirm:hover {
    background-color: #A0522D; /* 深褐色 */
}