/** PAGINATION STYLES
 ******************************************************************************/
div.pagination {
    display: block;
    text-align: center;
    margin: 10px auto;
}
.pagination-page {

    margin: 0 0.1em;
    padding: .2em .5em;
    font-size: 1.3em;
    color: #6A7F10;
    background-color: #ccdf7f;
    border-radius: 3px;
}
a.pagination-page:hover {
    color: #ccdf7f;
    background-color: #6A7F10;
}
.pagination-page-current {
    font-weight: bold;
    border: 2px solid #6A7F10;
}
@media screen and (max-width: 650px) {
    .pagination {
        margin: 4px auto;
        word-spacing: -2px;
    }
    .pagination-page {
        margin: 3px;
        padding: 5px;
    }
}
@media screen and (max-width: 500px) {
    .pagination {
        margin: 3px auto;
        word-spacing: -4px;
    }
    .pagination-page {
        margin: 2px;
        padding: 3px;
        font-size: 10pt;
        border-radius: 2px;
    }
}


/** PSU ID PHOTO STYLES
 ******************************************************************************/
.id_photo {
    max-width: 100px;
    border-radius: 5px;
}
.id_photo-navbar {
    max-height: 40px;
    display:inline;
    float:left;
    margin-right:3px;
    border-radius: 3px;
}
.id_photo-thumb {
    max-width: 50px;
    border-radius: 5px;
}
/**
When a user does not have an
ID photo, their styled initials
will be displayed instead
**/
.id_photo-nvl {  /**updated Aug 27 2024**/
    display: inline-block;
    font-size: 20px;
    font-family:serif;
    vertical-align: middle;
    border:2px solid #333;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding: 0;
    color:#000;
    letter-spacing: 0;
    position: relative;
    right:25px;
    top:7px;
    background-color: sandybrown;
    line-height:28px;
    font-weight:bold;
}

.smokescreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #989898;
    opacity: 0.5;
    z-index: 2147483638;
}
.smokescreen-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    background-color: white;
    opacity: 1;
    color: #6a7f10;
    border: 1px solid #6a7f10;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    z-index: 2147483638;
    transform: translate(-50%, -50%);
}

/** jquery-confirm text boxes are muted and hard to read **/
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
    color: black;
}

/** Styles for the Upload plugin
 ******************************************************************************/
.upload-link-a {
    text-decoration: none;
}
.upload-link-icon {
    text-decoration: none;
}
.upload-link-name {
    text-decoration: underline;
}
.upload-link-size {
    font-size: .8em;
}


/** TomSelect (Replacement for chosen-select)
 ******************************************************************************/
.ts-control{
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}