/* custom.css */
body {
    font-family:'Source Sans Pro', sans-serif;
    /* margin-left:25px; */
    font-size: 1rem;
    padding: 5px 10px;
}
.btn-custom {
    background-color: #2aa3bd;
    border: black 1px solid;
    color: white;
    border-radius: 5px;
    /* height: 35px; */
    width:150px;
    font-weight:bold;
    font-size: 16px;
    text-align: center;
}
.btn-custom:hover {
    background-color: #5FB6CC;
    color: white;
    border: black 1px solid;
    border-radius: 5px;
}
.suggestionsbox {
    position: absolute;
    border: 1px solid #ccc;
    top: calc(100%+ 4px); /*40px;*/
    left: 50px; /*120px;*/
    max-height: 500px;
    overflow-y: auto;
    width:100%;
    background: white;
    display:none;
    z-index:1000;
    line-height: 1;
}

.input-container {
    position:relative;
}
.input-responsive {
    height: 1.5rem;       /* scales with root font size */
    font-size: 1rem;      /* adjusts text proportionally */
    padding: 0.25rem 0.5rem;
}

.suggestion {
    padding: 8px;
    cursor: pointer;
}
.suggestion:hover {
    background-color: #f0f0f0;
}
.custom-border {
    border-color: #999999;
}