:root {
    --bulma-body-overflow-y: auto;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
}
th, td {
    border: 1px solid #000000;
    text-align: left;
    padding: 8px;
    width: auto;
    white-space: nowrap;
}

.customtextarea {
    height: 300px;
}

.tableNavigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.querySection {
    background-color: #b2b2b0;
    padding: 10px;
    border-radius: 10px;
    border: thin solid gray;
}

.templateSection {
    background-color: #b2b2b0;
    padding: 10px;
    border-radius: 10px;
    border: thin solid gray;
}

.emailSection {
    background-color: #0283b7;
    padding: 10px;
    border-radius: 10px;
    border: thin solid gray;
}

.result-table-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
    border: 1px solid #ddd;
}

#pageNumberText {
    font-weight: bold;
}

#notification {
    display: none; /* Hide by default */
    padding: 1rem;
    border-radius: 4px;
}

.notification {
    margin: 1rem 0;
}

.notification.is-success {
    background-color: #d4edda;
    color: #155724;
}

.notification.is-error {
    background-color: #f8d7da;
    color: #721c24;
}

.button-container {
    text-align: right; /* Align content to the right */
}

.button.is-red {
    background-color: #e74c3c; /* Red color */
}

.table-container {
    overflow-x: auto;
    white-space: nowrap;
}

.plus-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin: 20px;
}

.north {
    grid-column: 2;
    grid-row: 1;
}

.west {
    grid-column: 1;
    grid-row: 2;
}

.east {
    grid-column: 3;
    grid-row: 2;
}

.south {
    grid-column: 2;
    grid-row: 3;
}
