/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p{
    color: whitesmoke;
}

/* Chatbox Styles */
.chatbox {
    position: fixed;
    bottom: 0;
    right: -400px;  /* Start off-screen */
    width: 350px;
    height: 400px;
    background:#CDA38B;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 15px 15px 0 0;
    transition: right 0.5s ease-in-out;
    overflow: hidden;
}

#chat-toggle:checked + .chatbox {
    right: 2rem; /* Slide in */
}

.chat-header {
    background: #47200B;
    color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    padding: 10px;
    height: 80%;
    overflow-y: auto;
}

.chat-footer {
    padding: 10px;
    background: #384937;
    display: flex;
}

.chat-footer input {
    width: 90%;
    padding: 5px;
    border-radius: 10px;
}

.chat-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #7B4E37;
    color: whitesmoke;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.chat-toggle {
    display: none;  
}

/* Close button */
.close-btn {
    font-size: 1rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}
