﻿body {
   padding: 0;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* 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;
}

.select2-container--default .select2-selection--single{
    height: 36px;
    padding-top: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 4px !important;
}

.custom-modal {
    width: 280px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.custom-modal-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #007AFF;
    margin-bottom: 16px;
}

.custom-modal-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
}

.custom-modal-message {
    text-align: center;
    margin-bottom: 16px;
}

.custom-modal-buttons {
    display: flex;
    flex-direction: column;
}

.custom-modal-buttons button {
border: none;
background-color: transparent;
color: #007AFF;
font-size: 16px;
font-weight: bold;
text-align: center;
width: 100%;
padding: 10px 0px;
position: relative;
}

.custom-modal-buttons button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
}