body {
    display: flex;
    font-family: sans-serif;
}

.room-table-container {
    flex-grow: 1;
    margin-right: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.guest-list-container {
    width: 200px;
    border: 1px solid #ccc;
    padding: 10px;
}

.guest-list-container h2 {
    margin-top: 0;
}

#guests {
    list-style: none;
    padding: 0;
}

#guests li {
    border: 1px solid #eee;
    padding: 8px;
    margin-bottom: 5px;
    cursor: grab;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    user-select: none; /* Prevent text selection on drag */
}

.room-row {
    cursor: drop;
}

.assigned-guest {
    background-color: #e0f7fa;
    cursor: grab;
    border: 1px solid #b2ebf2;
    padding: 8px;
    border-radius: 5px;
    margin: 2px;
    text-align: center;
}

.assigned-guest:empty {
    background-color: transparent;
    border: none;
    padding: 8px; /* Keep padding for consistent row height */
}

.editable-date {
    cursor: text;
}