/** Author: Neilan Thunblom
 *  Copyright: 2024 Thunblom Development Ltd.
 *  License: Proprietary software. No public license. Not for distribution.
 */
/** Base Style */
.svdp-button {
    background-color: #0075AB !important;
    border: 1px solid #0075AB !important;
    border-radius: 5px;
    color: #F5F5F5;
    padding: 10px 20px !important;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    font-style: normal;
}

.svdp-button:hover {
    background-color: #1B526B !important;
    border: 2px solid #1B526B !important;
    color: #F5F5F5 !important;
    animation: ease-out 0.5s ease-in-out;
}

.svdp-button:active {
    background-color: #1B526B;
    border: 1px solid #1B526B;
    color: #F5F5F5;
}

.svdp-button:visited {
    background-color: #0075AB;
}

.svdp-button:focus {
    background-color: #C86E00;
}

.svdp-button-secondary {
    background-color: #409543;
    border: 1px solid #409543;
    border-radius: 5px;
    color: #F5F5F5;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
}

.svdp-button-link {
    background-color: transparent !important;
    border: none !important;
    color: #0075AB !important;
    padding: 0 !important;
    text-align: center !important;
    text-decoration: underline !important;
    display: inline-block !important;
    font-size: 16px !important;
    font-style: normal;
}

.svdp-button-active {
    background-color: #AB8200 !important;
    border: 1px solid #AB8200 !important;
    border-radius: 5px;
    color: #ffbfbf;
    padding: 13px 24px !important;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px !important;
    font-style: normal;
}

.svdp-button-danger {
    background-color: #AB5D00 !important;
    border: 1px solid #AB5D00 !important;
    border-radius: 5px;
    color: #F5F5F5;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    font-style: normal;
}

a {
    text-decoration: none;
    color: #0075AB;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 8px;
    font-size: 14px;
}

.small-margin {
    margin-bottom: 1%;
}

/* number input styling */
input[type="number"] {
    width: 100%;
    -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.flex-radio-container {
    display: grid;
}

.flex-radio-line {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: min-content !important;
}

.flex-radio-line label {
    flex: 0 0 150px !important; /* Adjust the width of the label column */
    text-align: left !important;
    margin-left: 10px !important;
    font-size: 16px;
    color: #333;
}

.flex-radio-line input[type="radio"] {
    flex: 0 0 150px !important; /* Adjust the width of the radio button column */
    text-align: right !important;
    font-size: 16px;
    color: #333;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.as_link {
    color: #0075AB !important;
    text-decoration: underline !important;
    cursor: pointer;
}

/** Message View ---------------------------------------------------------------------------------------------------*/
@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
.svdp-message-container {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    animation: slideIn 0.5s;
}

.svdp-message {
    font-size: large;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #F5F5F5;
    background-color: #1B526B;
    z-index: 1;
    text-align: center;
}

/** Style for Search View --------------------------------------------------------------------------------------------*/

.svdp-search-view-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 3%;
}

.svdp-search-bar-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.svdp-search-view-bar {
    width: 100%;
    padding: 10px;
    padding-right: 40px; /* Add padding to make room for the search icon */
    border: 1px solid #0075AB;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.svdp-search-view-bar:focus {
    outline: none;
}

.svdp-search-view-bar-search-button {
    position: absolute;
    height: 100%;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #0075AB;
    cursor: pointer;
    font-size: 1em;
    padding: 0;
    animation: ease-out 0.5s ease-in-out;
}

.svdp-search-view-bar-search-button:hover {
    color: #1B526B;
}

.neighbor-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #F5F5F5;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.neighbor-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.neighbor-search-results li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.neighbor-search-results li:hover {
    background-color: #f0f0f0;
}

.neighbor-search-results li:focus {
    background-color: #f0f0f0;
}

.neighbor-search-results a {
    color: #0075AB;
    text-decoration: none;
}

.neighbor-search-result {
    background-color: #f0f0f0;
    text-transform: capitalize;
}

.neighbor-search-result:hover {
    background-color: #AB8200 !important;
    color: white;
    font-weight: bold;
}

.intake-link {
    color: #F5F5F5;
    background-color: #0075AB;
    text-decoration: underline !important;
}

.intake-link:hover {
    color: #F5F5F5 !important;
    background-color: #1B516A !important;
    font-weight: bold;
}

@media (max-width: 990px) {
    .svdp-search-view-bar-search-button {
        display: none !important;
    }

    #neighbor-search-results {
        width: 100%;
    }

    #neighbor-search-results li {
        text-align: left;
        height: fit-content !important;

    }
}

/** Style for neighbor profile view ----------------------------------------------------------------------------------*/

.neighbor-profile-view {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.neighbor-profile-view__header__container {
    display: -webkit-flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin-bottom: 5%;
}

.neighbor-profile-view__header__neighbor-info-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    background-color: #f2f2f2;
    padding: 1%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: scroll;
}

.neighbor-profile-view__header__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1%;
}

.neighbor-profile-view__header__name h1 {
    font-size: 2em;
    font-weight: bold;
    justify-content: center;
}

.neighbor-profile-view__header__name_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.neighbor-profile-view__header__info-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.neighbor-profile-view__header__info-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    margin: 1%;
    padding: 1%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.neighbor-profile-view__header__info-label {
    font-weight: bold;
    background-color: white;
    padding: 5px;
    border-bottom: 1px solid #0075AB;
}

.neighbor-profile-view__header__info-value {
    background-color: white;
    padding: 10px;
    max-height: min-content;
    min-height: 50px;
}

.neighbor-profile-view__header__info-item__footer {
    background-color: white;
    width: 100%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.neighbor-profile-view__header__info-item__footer button[type="submit"] {
    background-color: #37474F;
    border-radius: 5px;
    color: #F5F5F5;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: .7em;
    font-style: normal;
}

.snm-selectable-page-display-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.snm-selectable-page-display-container-page-selection-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 3px solid #ddd;
    background-color: #f2f2f2;
}

.snm-selectable-page-display-container-page-selection-button-container button {
    margin: 1%;
}


@media only screen and (max-width: 1200px) {
    .neighbor-profile-view__header__neighbor-info-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .neighbor-profile-view__header__info-container {
        display: flex;
        overflow: visible;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .neighbor-profile-view__header__info-item {
        display: block;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
    .neighbor-profile-view__header__info-item__footer {
        display: flex;
        justify-content: center;
    }
    .neighbor-profile-view__header__info-item__footer button[type="submit"] {
        margin-top: 3%;
        margin-bottom: 3%;
    }

}

/* Style for the notes section -------------------------------------------------------------------------------------*/
.neighbor-profile-view__notes__container {
    display: none;
    flex-direction: column;
    width: 70%;
    margin-bottom: 20px;
}

.neighbor-profile-view__notes__container-textarea {
    width: 100%;
    min-height: 200px;
    margin-bottom: 10px;
    align-self: center;
}

.neighbor-profile-view__notes__container-section-button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* FORM STYLING -------------------------------------------------------------------------------------*/
.snm-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2%;
    flex-wrap: nowrap;
    width: 100%;
    padding: 20px;
}

.snm-form-container-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Layout and spacing */
    margin-bottom: 3%;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.snm-form-container-section h2{
    font-size: 1.5em;
    font-weight: bold;
    width: 100%;
    padding: 3%;
    background-color: #F5F5F5;
    border-bottom: 3px solid #ddd;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 3%;
    margin-top: 0;
}

.snm-form-container-section input {
    font-size: larger;
    max-width: fit-content;
    width: 100%;
    border: 1px solid #666;
    border-radius: 3px;
    padding: .5rem 1rem;
    transition: all .3s;
}

.snm-form-container-section-line {
    display: grid;
    padding: 1%;
    margin-bottom: 1%;
    text-align: right;
}

.snm-form-container-section-line input{
    width: 70%;
}

.snm-form-container-section-line-selection {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1%;
    margin-bottom: 1%;
    text-align: right;
}

.snm-form-container-section-line-selection label {
    font-size: 1em;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 3%;
    margin-bottom: 3%;
    text-align: left;
}

.snm-form-container-section-line-selection input[type="checkbox"],
.snm-form-container-section-line-selection input[type="radio"] {
    margin-right: 2%;
    size: 1em;
    color: #0075AB;
}


.snm-form-container-section-line label {
    font-size: 1em;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 3%;
    margin-bottom: 3%;
    text-align: left;
}

.snm-form-container-section-line input[type="number"] {
    text-align: right;
    min-width: 150px;
}

.snm-form-container-section_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-size: 1em;
    font-weight: bold;
    background-color: white;
    text-align: center;
    margin-top: 3%;
    width: 100%;
    padding: 3%;
}

.snm-form-container-section_footer button {
    border-radius: 5px;
    color: #F5F5F5;
    margin-top: 10px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    font-style: normal;
    width: min-content;
}

/* MODAL STYLING -------------------------------------------------------------------------------------*/
.snm-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.snm-modal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    height: auto;
    min-width: 80%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    position: absolute;
    top: 10%;
}

@media screen and (min-width: 750px) {
    .snm-modal-container {
        min-width: 50%;
    }
    
}

@media screen and (min-width: 990px) {
    .snm-modal-container {
        min-width: 30%;
    }
    
}

.snm-modal-header {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10% 0 10%;
    background-color: #f2f2f2;
    border-bottom: 3px solid #ddd;
}

.snm-modal-close {
    color: #37474F;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    float: right;
    font-size: 2em;
    font-weight: bold;
}

.snm-modal-header h2 {
    color: #37474F;
    font-size: 2em;
    margin-bottom: 2%;
}

.snm-modal-form-container {
    width: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5%;
}

/* Style for the metadata section -----------------------------------------------------------------------------------*/
.neighbor-profile-view__metadata__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
}

.neighbor-profile-view__metadata__section {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin-bottom: 20px;
}

.neighbor-profile-view__metadata__section table {
    width: 100%;
    border-collapse: collapse;
    background-color: #F5F5F5;
}

.neighbor-profile-view__metadata__section td:hover {
    background-color: #F5F5F5;
}

.neighbor-profile-view__metadata__section-feilds {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    background-color: white !important;
}

.neighbor-profile-view__metadata__section-field {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 5%;
}
/* dont stack fields on top of each other on large screens */
@media screen and (min-width: 990px) {
    .neighbor-profile-view__metadata__section-feilds {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .neighbor-profile-view__metadata__section-field {
        width: 50%;
    }
    
}

.neighbor-profile-view__metadata__section label {
    font-size: 1em;
    font-weight: bold;
    margin-right: 3%;
    width: auto;
    flex-grow: 1;
    text-align: right;
    max-width: 40%;
}

.neighbor-profile-view__metadata__section input[type="number"] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    width: 60%;
    text-align: right;
    margin-right: auto;
}

.neighbor-profile-view__metadata__section_footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.neighbor-profile-view__metadata__section_footer-line {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.neighbor-profile-view__metadata__section-title {
    font-weight: bold;
    font-size: 2.5em;
    background-color: #F5F5F5;
    border: 1px solid #ddd;
    border-bottom: 3px solid #ddd;
    padding: 1%;
    text-align: center;
}

.neighbor-profile-view__metadata__section-total {
    font-size: 2.5em;
    font-weight: bold;
}

/* documents section ---------------------------------------------*/
.neighbor-profile-view__document__container {
    border: 1px solid #ddd;
    background-color: white;
    font-size: 2em;

    width: 70%;
}

.neighbor-profile-view__document__title {
    font-weight: bold;
    width: 100%;
    margin-bottom: 4%;
    text-align: center;
    font-size: larger;
    background-color: #F5F5F5;
    border-bottom: 3px solid #ddd;
    padding: 1%;
}

.neighbor_profile_document-view__section-fields {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
/* Style for each document field */
.neighbor-profile-view__document__field {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5%;
    font-size:75%;
    width: 75%;
    background-color: #F5F5F5;
    padding: 2%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style for document name label */
.neighbor-profile-view__document__field-label {
    flex: 1;
    font-weight: bold;
    padding-bottom: 5%;
}

/* Style for document link */
.neighbor_profile_document-view__field-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: right;
    flex: 0;
}

.neighbor_profile_document-view__field-buttons button {
    margin-left: 10px;
    font-size: large;
}

.neighbor_profile_document-view__field-buttons form{
    margin-left: 10px;
    font-size: large;
}

.neighbor-profile-view__document__field:last-child {
    margin-top: 20px;
}

.neighbor-profile-view__document__footer {
    display: flex;
    justify-content: space-around;
    flex: 1;
    width: 100%;
    padding: 5%;
    background-color: #F5F5F5;
    border-top: 3px solid #ddd;
}

.neighbor-profile-view__document__footer form {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
    width: 50%;
    padding: 0 15%;
}

.neighbor-profile-view__document__footer label {
    font-size: 35%;
    padding: 7%;
    text-align: center;
}

@media (min-width:990px) {
    .neighbor-profile-view__document__field-label {
        flex: 0;
        width: 30%;
        padding-bottom: 0%;
    }
    .neighbor-profile-view__document__field {
        flex-direction:row;
        justify-content:space-between;
    }
    .neighbor-profile-view__document__field:last-child {
        margin-top: 0px;
    }
    .neighbor-profile-view__document__footer {
        flex: 0;
    }
    .neighbor-profile-view__document__footer form {
        width: 100%;
        padding: 0 5%;
        flex-wrap: none;
    }
    .neighbor-profile-view__document__footer label {
        font-size: 35%;
        padding: 0%;
    }
}

/* Style for admin dashboard view ---------------------------------------------------------------------------*/
.svdp-admin-dashboard-view-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 1%;
    border-radius: 5px;
}

.svdp-admin-dashboard-view-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1%;
    border: 2px solid #0a0a0a;
    border-radius: 5px;
    background: #f3f3f3;
}

.svdp-admin-dashboard-view-tile-title {
    font-size: 1.5em;
    border-bottom: 1px solid #0a0a0a;
}

.svdp-admin-dashboard-view-tile-value {
    font-size: 2em;
    font-weight: bold;
}


/* Style for dashboard assistance view */
.svdp-assistance-requests-list-container {
    width: 100%;
    align-items: center;
    padding: 1%;
    border-radius: 5px;
    align-self: center;
}

.svdp-assistance-requests-list {
    border-collapse: collapse;
}

.svdp-assistance-requests-list thead th {
    border-top: 2px solid #0a0a0a;
    border-bottom: 2px solid #0a0a0a;
    background-color: #fafafa;
    padding: 1%;
}

.svdp-assistance-requests-list tbody tr {
    border-top: 2px solid #0a0a0a;
}

.svdp-assistance-requests-list tbody tr:last-child {
    border-bottom: 2px solid #0a0a0a;
}

.svdp-assistance-requests-list td,
.svdp-assistance-requests-list th {
    padding: 1%;
    text-align: center;
}

.svdp-assistance-request-review-meta-section {
    display: flex;
    justify-content: space-between;
    width: 40%;
    margin-top: 5%;
    margin-bottom: 10px;
}


.svdp-assistance-request-review-admin-status-section {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 10px;
}

.svdp-admin-list-container {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
}

.svdp-admin-list-header, .svdp-admin-list-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.svdp-admin-list-header {
    background-color: #0075AB; /* Primary */
    color: #F7FBFF;
    font-weight: bold;
}

.svdp-admin-list-row {
    background-color: #F7FBFF;
    cursor: pointer;
}

.svdp-admin-list-row:hover {
    background-color: #e0f7fa; /* Light Primary */
}

.svdp-admin-list-column {
    flex: 1;
    padding: 5px;
    text-align: left;
}

.svdp-admin-list-details {
    background-color: #e0f7fa; /* Light Primary */
    padding: 10px;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
}

.svdp-admin-list-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* Style for document page ------- */

.svdp-manager-document-view {
    display: flex;
    height: 1000px;
    
}

/* Style for Home page -----------------------------------------------------------------------------------------------*/

.svdp-home-view-neighbor-tiles-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* or flex-start */
    width: 100%;
}

.svdp-home-view-neighbor-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1%;
    border: 2px solid #0a0a0a;
    border-radius: 5px;
    background: #f3f3f3;
    margin: 1%;
    width: calc(20% - 2%); /* Adjusting for margin */
}

.snm-page-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Style for info container -------------------------------------------------------------------------------------*/
.snm-info-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    justify-content: space-around;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-content: center;
    margin: 1%;
}

.snm-info-container-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.snm-info-container-item_title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 3%;
    padding-top: .5em;
    padding-bottom: .5em;
    text-align: center;
    flex-wrap: nowrap;
    width: 100%;
    background-color: #F5F5F5;
    border-bottom: 3px solid #ddd;
}

.snm-info-container-item_value {
    font-size: 1em;
    text-align: center;
}

@media (min-width: 990px) {
    .snm-info-container {
        width: 100%;
        flex-direction: row;
    }
    
    .snm-info-container-item {
        width: 100%;
        flex-wrap: nowrap;
    }
    
    
}

/* Style for info tiles -------------------------------------------------------------------------------------*/
.snm-info-tile-container {
    display: flex;
    flex-direction: column;
}

.snm-info-tile-container-tile {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 1%;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.snm-info-tile-container-tile_title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 3%;
    padding: .5em;
    text-align: center;
    flex-wrap: nowrap;
    width: 100%;
    color: #002637;
    text-transform: capitalize;
    text-shadow: 1px 1px #8586892b;
    background-color: #f2f2f2;
    border-bottom: 3px solid #0075AB;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.snm-info-tile-container-tile_value {
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}

.snm-info-tile-container-tile_value h2 {
    font-size: 1.2em;
    font-weight: normal;
    margin-bottom: 2%;
}

.snm-info-tile-container-tile_value h1 {
    font-size: 3em;
    margin-bottom: 2%;
    font-weight: bold;
}

.snm-info-tile-container-tile_footer {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 5%;
    margin-top: 10px;
    background-color: #f2f2f2;
    border-top: 3px solid #0075AB;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
}


@media (min-width: 990px) {
    .snm-info-tile-container {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .snm-info-tile-container-tile {
        width: 100%;
        flex-wrap: nowrap;
    }
}

.snm-info-tile-container-tile_set_size {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 1%;
    margin-bottom: 20px;
    flex-wrap: wrap;
    background-color: white;
    border: 1px solid #E0F7FA;
    border-radius: 5px;
    box-shadow: 0 2px 4px #F7FBFF;
    animation: fadein 5s;
}

@media (min-width: 990px) {
    .snm-info-tile-container-tile_set_size {
        width: 20%;
    }
    
}

h2 {
    font-size: 3em;
    text-align: center;
}


.snm-intake-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2%;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
}

.snm-intake-form-container-section {
    width: 100%;
    margin-bottom: 2%;
    padding: 20px;
    border-radius: 8px;
    background-color: #f5f5f5; /* Light Neutral */
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.snm-intake-form-container-section h2 {
    font-size: 1.5em;
    font-weight: bold;
    color: #37474f; /* Dark Neutral */
    text-align: center;
    margin-bottom: 20px;
}

.snm-intake-form-container-section-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.snm-intake-form-container-section-line label {
    font-size: 1em;
    font-weight: bold;
    color: #0075AB; /* Primary */
    margin-bottom: 5px;
    width: 100%;
    text-align: left;
}

.snm-intake-form-container-section-line input[type="text"],
.snm-intake-form-container-section-line input[type="tel"],
.snm-intake-form-container-section-line input[type="number"],
.snm-intake-form-container-section-line input[type="date"],
.snm-intake-form-container-section-line select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #37474f; /* Dark Neutral */
    margin-bottom: 10px;
    box-sizing: border-box;
}

.snm-intake-form-container-section-line input[type="checkbox"],
.snm-intake-form-container-section-line input[type="radio"] {
    margin-right: 10px;
}

.snm-intake-form-container-section-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.snm-intake-button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 10px;
    font-size: 1em;
    cursor: pointer;
}

.snm-intake-button-accent {
    color: #F5F5F5;
    text-emphasis-color: #F5F5F5;
    background-color: #4caf50; /* Accent */
    cursor: pointer;
}

.snm-intake-button-accent:hover {
    background-color: #388e3c; /* Accent Dark */
    animation: 1s;
}


.svdp-resources-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.svdp-resources-table th, .svdp-resources-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.svdp-resources-table th {
    background-color: #0073aa;
    color: white;
    text-align: center;
}

.svdp-resources-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.svdp-resources-table tr:hover {
    background-color: #ddd;
}

.svdp-resources-actions-form {
    display: flex;
    gap: 10px;
}

.payee_review_container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

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

.payee_review_label {
    flex: 0 0 150px; /* Adjust the width of the label column */
    text-align: right;
    margin-right: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.payee_info_review_value {
    flex: 0 0 150px; /* Adjust the width of the value column */
    text-align: left;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    height: 100%;
}