﻿body {
    /*padding-top: 50px;*/
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.clickable {
    cursor: pointer;
}

.float-right {
    float:right;
}

.clicktext {
    color: #989898;
    cursor: pointer;
}

    .clicktext:hover {
        color: rgba(243,102,18, 0.7);
    }
/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*  max-width: 280px;*/
}

.bd-example-modal-lg .modal-dialog {
    display: table;
    position: relative;
    margin: 0 auto;
    top: calc(50% - 24px);
}

    .bd-example-modal-lg .modal-dialog .modal-content {
        background-color: transparent;
        border: none;
        width:48px;
        margin: auto;
    }

/* styles for validation helpers */
.field-validation-error {
    /*color: #e80c4d;*/
    font-weight: 400;
    font-size: 0.9em;
    color: var(--primary-orange);
    padding-right: 5px;
}

.field-validation-valid {
    display: none;
}

input.field-validation-valid {
    border: solid 1px #f57c19;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

textarea.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    font-size: 1.1em;
}

    .validation-summary-errors ul {
        list-style: disc;
    }

.validation-summary-valid {
    display: none;
}

.card {
    height: calc(100% - 3.75rem);
    min-height: calc(100% - 3.75rem);
    border: solid 1px black;
}
.card .list-group {
    overflow-y: auto;
}

.thumbnail {
    float: right;
    max-width: 300px;
    width: 300px;
}

.video-card {
    float:right;
    max-width: 300px;
    width: 300px;
}

.row-border-bottom {
    border-bottom: solid 1px black;
    border-right: solid 1px black;
    border-left: solid 1px black;
}

.column-border-right {
    border-right: solid 1px black;
}

.link-wrap {

    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    vertical-align: text-top;
}

.row-border-bottom-2 {
    border-bottom: solid 2px black;
    margin-top: 1.0rem;
    padding-bottom: 1.0rem;
}

input[type=file] {

}
input[type=file]::file-selector-button {
    margin-right: 2.0rem;
}

/* Custom CSS for positioning and styling */
.typeahead-form-group {
    position: relative;
}

.typeahead-list-group {
    position: absolute;
    width: 100%;
    top: 100%; /* Position below the input */
    left: 0;
    z-index: 1000; /* Ensure it appears above other content */
}

.typeahead-list-group-item:hover {
    cursor: pointer;
    background-color: #f8f9fa; /* Example hover background */
}