
/**
 * Notify Styles notify.css
 */

html, body {
    overflow: hidden;
}

body {
    display: flex;
    height: 100vh;
    max-width: none;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.app-header {
    background-color: var(--background);
    padding: 10px 10px 10px 10px;
    flex-shrink: 0;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.app-main {
    flex-grow: 1;
    overflow: hidden;
    overflow-y: auto;
    padding: 5px;
    background-color: var(--background);
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.app-footer {
    background-color: var(--background);
}

.button-setup {
    text-align: right;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2em;
    padding: 2px 5px;
    line-height: 1;
    border-radius: 4px;
}

.delete-button:hover {
    color: var(--text-bright);
    background-color: var(--background);
}

.delete-button:focus {
    box-shadow: 0 0 0 2px var(--focus);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 5px;
    margin-right: 10px;
}

.header-logo {
    height: 64px;
    width: auto;
    margin-left: 10px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 5px 0;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    background-color: var(--background);
    border-radius: 5px;
    flex-shrink: 0;
    border-top: 0px;
    color: --var(--text-muted);
}

.icon-button {
    background: none;
    border: none;
    color: var(--text-bright);
    cursor: pointer;
    font-size: 1.6em;
    padding: 0 10px;
    line-height: 1;
}

.message-avatar {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.message-body {
    display: flex;
    flex-direction: column;
    color: var(--text-muted);
}

.message-container {
    max-width: 600px;
    margin: 5px auto;
    background-color: var(--background-alt);
}

.message-context {
    flex-grow: 1;
    padding-right: 60px;
    padding-bottom: 20px;
    overflow: hidden;
}

.message-counter {
    display: flex;
    text-align: center;
    font-size: 0.9em;
    margin-left: 20px;
    color: var(--text-muted);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 10px;
}

.message-item {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    padding: 15px;
    background-color: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: 5px;
    position: relative;
    flex-wrap: wrap;
}

#message-list {
    /* max-height: 750px; */
    overflow-y: auto;
    padding: 15px;
}

.message-meta {
    font-size: 0.9em;
    color: var(--text-muted);
    text-align: right;
    flex-shrink: 0;
}

.message-stamp {
    font-size: 0.8em;
    color: var(--time);
    position: absolute;
    bottom: 8px;
    right: 8px;            
    white-space: nowrap;
}

.message-template {
    border-bottom: 1px solid var(--border);
    padding: 10px;
    align-items: flex-start;
}

.message-title {
    font-weight: bold;
    color: var(--text-bright);
    margin: 0;
}

.view {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.views-container {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.views-container.show-conversation {
    transform: translateX(-100%);
}




/* .reply-area {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}
.reply-area button {
    flex-shrink: 0;
    align-self: flex-end;
    margin: 0;
}
.reply-area textarea {
    flex-grow: 1;
    min-height: 40px;
    height: 50px;
    resize: vertical;
    margin: 0;
} */
