.nav_logged_in {
    color: white; /* Change this to any color you prefer */
}

#error_alert {
    display: none;
}

.btn-space {
    margin: 0 3px;
}

.approvals_data_width {
    width: 45%;
}
.approvals_action_width {
    width: 10%;
}
.table-bordered-outer {
    border: 2px solid #adadad; /* Adjust the border width and color as needed */
    border-radius: 10px; /* Add rounded corners */
    overflow: hidden; /* Ensure inner tables don't overflow */
    padding: 0; /* Optional: Remove any padding */
    margin-top: 10px; /* Optional: Add some margin */
    margin-bottom: 10px; /* Optional: Add some margin */
}

.text-e4c {
    color: #fc6444;
}

.bg-e4c {
    background-color: #fc6444;
    color: #fff;
}

.list-group-item-e4c {
    background-color: #fc6444;
    color: #fff;
    border-color: #fc6444;
    padding-left: 10px;
}

.btn-outline-e4c {
    color: #fc6444;
    border-color: #fc6444;
}

.btn-outline-e4c:hover, 
.btn-outline-e4c:focus, 
.btn-outline-e4c:active {
    color: #fff;
    background-color: #fc6444;
    border-color: #fc6444;
}

.badge-e4c {
    background-color: #fc6444;
    color: #fff;
}

.full-width {
    width: 100%;
  }

#search-results {
    position: absolute;
    top: 42px;
    width: 65%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1000; /* Ensure it appears above other elements */
    
}
.result-item {
    padding: 5px;
    border-bottom: 1px solid #ccc;
    margin: 5px;
}

.feedback-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 10px;
}

.message-reply {
    width: 98%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.btn-space {
    margin-bottom: 5px;
}

.input-group-append .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Unchecked = Danger */
#openClosedSwitch:not(:checked) {
    background-color: #dc3545; /* red */
    border-color: #dc3545;
}

/* Checked = Success */
#openClosedSwitch:checked {
    background-color: #198754; /* green */
    border-color: #198754;
}

.icon-link {
    text-decoration: none !important;
    margin-left: 4px;
}

/* Optional: Add hover effect */
.icon-link:hover {
    text-decoration: none;
}

.badge-clickable {
    cursor: pointer;
    transition: opacity 0.2s;
}

.badge-clickable:hover {
    opacity: 0.8;
}