﻿
#rowAdder {
    margin-left: 17px;
}

.input-group-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
}

.input-group {
    /*margin-right: 2%;*/
    margin-bottom: 10px;
}

    .input-group:last-child {
        margin-right: 0;
    }

*/



body {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.scheduler-border {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 255, 0.2); /* Blue tinted shadow */
}

.button-options {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 255, 0.2); /* Blue tinted shadow */
}

.mb-2 {
    margin-bottom: 20px;
}

.input-group-container {
    margin-top: 10px;
}

.file-input {
    flex: 1;
}

.document-name {
    flex: 2;
}

.delete-button {
    margin-right: 10px;
}

.document-input {
    margin-left: -13px; /* Adjust margin-left as needed */
}

.optional-border {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}














.autocomplete-container {
    position: relative;
    display: inline-block;
}

#validatorSearchText {
    width: 100%;
    box-sizing: border-box;
    border-radius: 115px 15px 15px 15px;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; /* Set the width to 100% */
    max-height: 200px; /* Adjust the maximum height as needed */
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: none;
    z-index: 1;
}

    .autocomplete-results .result-item {
        padding: 8px;
        cursor: pointer;
    }

        .autocomplete-results .result-item:hover {
            background-color: #f2f2f2;
        }
