/*Districts*/
#village-container {
    display: none;
}

/*jQuery Commentary*/
.jQuery-chat-form {
    display: flex;
    width: 100%;
    background-color: var(--secondary);
    border: 1px solid #444;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.jQuery-chat-form:hover,
.jQuery-chat-form:focus-within {
    border-color: #fff;
    box-shadow: 0 0 8px var(--secondary);
}

.jQuery-chat-form textarea {
    flex: 1;
    resize: none;
    padding: 10px;
    font-family: inherit;
    font-size: 1em;
    font-weight: normal;
    line-height: 1.4;
    color: #e0e0e0;
    background-color: transparent;
    border: none;
    outline: none;
    height: 60px;
    /* Fixed height for consistency */
    box-shadow: none;
    /* Remove default input shadow */
}

.jQuery-chat-form input[type='submit'] {
    width: 60px;
    background-color: transparent;
    color: #fff;
    border: none;
    border-left: 1px solid #444;
    cursor: pointer;
    font-weight: bold;
    margin: 0;
    padding: 0;
    transition: background-color 0.2s;
    height: auto;
    /* Let flexbox handle height */
}

.jQuery-chat-form input[type='submit']:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.jQuery-message .editMessage {
    display: inline !important;
    font-weight: normal;
    cursor: pointer;
}

.jQuery-message .chatMessage {
    display: inline !important;
}

.jQuery-chat-section {
    float: left;
}

.jQuery-chat-navs {
    float: right;
}

/*Dice Roll*/
.dice-roll {
    border-radius: 10%;
    /* border: 1px solid gold; */
    display: inline;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: bold;
}

.dice-roll:after {
    content: "\1F3B2";
}