﻿/* CSS Reset or Normalize */
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');

/* #region Hidden */
#navbar-search {
    visibility: hidden;
    pointer-events: none;
}
/* #endregion /Hidden */

/* #region Colors */
.color-cc {
    color: #268bd2 !important;
}

.background-color-cc {
    background-color: #268bd2 !important;
}

/* #endregion /Colors */

/* #region Borders */
.border-top-cc {
    border-top-color: #268bd2 !important;
}

.border-right-cc {
    border-right-color: #268bd2 !important;
}

.border-bottom-cc {
    border-bottom-color: #268bd2 !important
}

.border-left-cc {
    border-left-color: #268bd2 !important;
}

.border-thick-top-cc {
    border-top-width: 2px;
    border-top-color: #268bd2;
}

.border-thick-right-cc {
    border-right-width: 2px;
    border-right-color: #268bd2;
}

.border-thick-bottom-cc {
    border-bottom-width: 2px;
    border-bottom-color: #268bd2;
}

.border-thick-left-cc {
    border-left-width: 2px;
    border-left-color: #268bd2;
}
/* #endregion /Borders */

/* #region Icons */
.icon-spin {
    display: inline-block;
    animation: icon-spin 1s linear infinite;
}

@keyframes icon-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.custom-underline-cc {
    display: inline-block; /* Important for border-bottom to work properly */
    border-bottom: 3px solid #268bd2 !important;
    padding-bottom: 2px; /* Space between text and underline */
}

.badge-cc {
    color: #fff !important;
    background-color: #268bd2 !important;
}
/* #endregion /Icons */

/* #region Defaults */
body {
    /*padding-bottom: 20px;*/
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.text-left {
    text-align: left;
}

.underline {
    text-decoration: underline;
}

.full-height-row {
    /*height: 100vh;*/
    height: calc(100vh - 180px); /* adjust as needed for navbar/footer */
}

/* 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;
}

.bg-light-danger {
    background-color: #e0918f;
}

/* Default red/green toggle switch */
.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #28a745; /* Green when checked */
}
.custom-switch .custom-control-input:not(:checked) ~ .custom-control-label::before {
    background-color: #dc3545; /* Red when not checked */
}

.dropdown-menu {
    z-index: 997;
}

/* Hides the down carrot icon next to elements with dropdown class */
.dropdown-toggle::after {
    display: none;
}

.disabled {
    color: #ccc !important; /* Color for disabled state */
    cursor: not-allowed; /* Change cursor to indicate not clickable */
    pointer-events: none;
}
.textbox-disabled {
    color: #ccc !important; /* Color for disabled state */
    cursor: not-allowed; /* Change cursor to indicate not clickable */
    border: none;
    pointer-events: none;
}
.nowrap {
    white-space: nowrap !important;
}

/* #region Modals */
html.modal-open {
    overflow: hidden !important;
    height: 100%;
    position: fixed;
    width: 100%;
}

body.modal-open {
    position: fixed !important;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
    touch-action: none !important;  
    -webkit-overflow-scrolling: none !important;
}

.modal-backdrop {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);  
    z-index: 1040 !important;
    pointer-events: none !important;  
}

.modal {
    z-index: 1050 !important;
    position: fixed !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;  
}

.modal.show {
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    max-height: 90vh;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
}

.modal input,
.modal textarea {
    font-size: 16px !important; /* Prevents iOS zooming */
}
/* #endregion /Modals */

/* #region Buttons */
.btn-xs {
    padding: .3125rem .75rem;
    font-size: .6125rem;
    line-height: 1.6924;
    border-radius: .1875rem
}

/* Remove blue outline from a elements in chrome on ios */
a:focus, a:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important; /* Removes iOS tap highlight */
}

/*.dt-button {
    all: unset;*/ /* Resets iOS-specific styles */
    /*display: inline-block !important;*/ /* Ensures buttons are visible */
    /*background-color: inherit !important;*/ /* Use your defined background */
    /*color: inherit !important;*/ /* Keep your defined text color */
    /*padding: inherit !important;
    border: inherit !important;
    font: inherit !important;*/ /* Ensures the correct font is used */
    /*text-align: center !important;
    cursor: pointer !important;
}*/
/* #endregion /Buttons */
/* #endregion /Defaults */

/* #region My Profile */
/*#loginPartialProfilePic {
    width: 100px;
    height: 100px;*/
    /*display: block;
    width: 100%;*/ /* Make sure the image scales to fit the container width */
    /*height: auto;*/ /* Maintain aspect ratio */
    /*object-fit: cover;*/  /* This ensures the image fills the container while preserving aspect ratio */
    /*object-position: center;*/ /* This centers the image within the container */
    /*position: absolute;*/ /* Ensures proper positioning */
    /*top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/ /* Centers the image horizontally and vertically */
/*}*/
#loginPartialProfilePic {
    width: 80px; /* Default size */
    height: 80px;
    object-fit: cover;
    transition: width 0.3s ease, height 0.3s ease;
}

/*body.sidebar-xs #loginPartialProfilePic {
    width: 60px;*/ /* Smaller size when the sidebar is collapsed */
    /*height: 60px;
}*/


#imageContainer {
    width: 100%;
    height: 400px;
    /*border-left: 3px solid black;
    border-top: 3px solid black;
    border-right: 3px solid #268bd2;
    border-bottom: 3px solid #268bd2;*/
    overflow: hidden;
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 20px 20px; /* Size of the grid squares */
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}
#imageToCrop {
    width: 100%;
    height: auto;
}

/* Placeholder for the cropped image */
#croppedImageContainer {
    width: 275px;
    height: 275px;
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}
#croppedImage {
    width: 275px;
    height: 275px;
}
/* #endregion /My Profile */

/* #region Full Edit */
/* #region Profile Pic */
#fullEditImageContainer {
    width: 100%;
    height: 400px;
    /*border-left: 3px solid black;
    border-top: 3px solid black;
    border-right: 3px solid #268bd2;
    border-bottom: 3px solid #268bd2;*/
    overflow: hidden;
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 20px 20px; /* Size of the grid squares */
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

#fullEditImageToCrop {
    width: 100%;
    height: auto;
}

/* Placeholder for the cropped image */
#fullEditCroppedImageContainer {
    width: 275px;
    height: 275px;
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

#fullEditCroppedImage {
    width: 275px;
    height: 275px;
}
/* #endregion /Profile Pic */
/* #region Roles and Permissions */
#fullEditRolesCard .card-body,
#fullEditPermissionsCard .card-body {
    padding: 0 !important;
}

#fullEditRolesTable,
#fullEditPermissionsTable {
    background-color: #1d1e21;
}

#fullEditRolesTable td,
#fullEditPermissionsTable td {
    border: none !important;
    padding-bottom: unset;
}

#fullEditRolesTable th,
#fullEditPermissionsTable th {
    background-color: #268bd2;
}

#fullEditRolesCard .row .icon-rotate-cw2,
#fullEditPermissionsCard .row .icon-rotate-cw2 {
    padding-left: 13px;
}

#fullEditRolesCard .row .icon-checkbox-checked2,
#fullEditPermissionsCard .row .icon-checkbox-checked2 {
    padding-left: 6px;
}

#fullEditRolesCard .card-subheader,
#fullEditPermissionsCard .card-subheader {
    padding-right: 15px;
}

#fullEditRolesCard i,
#fullEditPermissionsCard i {
    color: white;
}

#fullEditRolesCard i:hover,
#fullEditPermissionsCard i:hover {
    color: #268bd2;
    cursor: pointer;
}
/* #endregion /Roles and Permissions */
/* #endregion /Full Edit */

/* #region Left Sidebar */
.navbar-brand img {
    height: 1.5rem;
}

/* Style and position logo when sidebar collapsed on desktop */
.sidebar-expand-xl.sidebar-main-resized:not(.sidebar-main-unfold) .navbar-brand img {
    padding: 0;
    margin: 0;
    position: relative;
    right: 14px;
    height: 2rem;
}

/* Add padding to profile pic in login partial when sidebar collapsed on desktop */
.sidebar-expand-xl.sidebar-main-resized:not(.sidebar-main-unfold) .sidebar-section-body {
    padding-left: 10px;
    padding-right: 10px;
}

/* Align my apps icons when sidebar collapsed on desktop */
.sidebar-expand-xl.sidebar-main-resized:not(.sidebar-main-unfold) .nav-sidebar .nav-link .sidebar-img {
    margin-left: 0;
    margin-right: 0;
}

.nav-sidebar .nav-item .nav-link .sidebar-img {
    width: 1rem;
    margin-right: 1.25rem;
    margin-top: .1875rem;
    margin-bottom: .1875rem;
    top: 0;
    line-height: 1;
    min-width: 1em;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    vertical-align: middle;
    position: relative;
}
/* #endregion /Left Sidebar */

/* #region Navigation */
.custom-underline {
    display: inline-block; /* Important for border-bottom to work properly */
    border-bottom: 3px solid #268bd2 !important; 
    padding-bottom: 2px; /* Space between text and underline */
}

.nav-item-single .active
{
    background-color: #268bd2 !important;
}
/* #endregion /Navigation */

/* #region Home Page */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vh
    /* height: 100vh; /* Optionally set the height for centering in the vertical direction */
}

.main-logo {
    width: 280px;
    height: 150px;
    max-width: 100%; /* Ensure the image does not exceed the container's width */
    max-height: 100%; /* Ensure the image does not exceed the container's height */
}

.image-container {
    position: relative;
    display: inline-block;
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #268bd2;
}

#navbar-footer a:hover {
    color: #268bd2;
}

/* #region App Cards */
#AboutTheBusiness .card-footer {
    background-color: white;
}

#TheApps .card {
    background-color: white;
}
#TheApps img {
    width: 50px;
}


#homeAbacusAppCard {
    color: black;
    border-left: 2px solid #d6931f;
    border-bottom: 2px solid #d6931f;
}
#homeAbacusCardDescription {
    color: white;
    background-color: #d6931f !important;
    padding: 10px;
}
#homeAbacusAppCard .card-footer {
    background-color: black;
    /*border-right: 2px solid #d6931f;*/
}
#homeAbacusAppCard .card-footer i {
    color: white;    
}
#homeAbacusAppCard .card-footer i:hover {
    color: #d6931f;
    cursor: pointer;
}

#homeHermesAppCard {
    color: black;
    border-left: 2px solid #ff0000;
    border-bottom: 2px solid #ff0000;
}
#homeHermesCardDescription {
    color: white;
    background-color: #ff0000 !important;
    padding: 10px;
}

#homeHermesAppCard .card-footer {
    background-color: black;
    /*border-right: 2px solid #d6931f;*/
}
#homeHermesAppCard .card-footer i {
    color: white;    
}
#homeHermesAppCard .card-footer i:hover {
    color: #ff0000;
    cursor: pointer;
}

#homeHourglassAppCard {
    color: black;
    border-left: 2px solid #7fd101;
    border-bottom: 2px solid #7fd101;
}
#homeHourglassCardDescription {
    color: white;
    background-color: #7fd101 !important;
    padding: 10px;
}

#homeHourglassAppCard .card-footer {
    background-color: black;
    /*border-right: 2px solid #d6931f;*/
}
#homeHourglassAppCard .card-footer i {
    color: white;    
}
#homeHourglassAppCard .card-footer i:hover {
    color: #7fd101;
    cursor: pointer;
}

#homeSoberSoftAppCard {
    color: black;
    border-left: 2px solid #9f01f1;
    border-bottom: 2px solid #9f01f1;
}
#homeSoberSoftCardDescription {
    color: white;
    background-color: #9f01f1 !important;
    padding: 10px;
}
#homeSoberSoftAppCard .card-footer {
    background-color: black;
    /*border-right: 2px solid #d6931f;*/
}
#homeSoberSoftAppCard .card-footer i {
    color: white;    
}
#homeSoberSoftAppCard .card-footer i:hover {
    color: #9f01f1;
    cursor: pointer;
}
/* #endregion /App Cards */
/* #endregion /Home Page */

/* #region Register */
#registerClearButton {
    box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.75);
}
#registerClearButton:active {
    box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.75);
}
/* #endregion /Register */

/* #region Login/Logout */
#logIn {
    box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.75);
}

#logIn:active {
    box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.75);
}

#primaryLogoutButton {
    box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.75);
}

#primaryLogoutButton:active {
    box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.75);
}
/* #endregion /Login/Logout */

/* #region Admin*/
/* #region Dashboard */
.hr-black {
    color: black; 
    background-color: black; 
    height: 2px; 
    margin: 0;
    padding: 0;
    border: none;
}
.hr-cc {
    color: #268bd2;
    background-color: #268bd2;
    height: 5px;
    margin: 0;
    padding: 0;
    border: none;
}

/* #region Live Update Toggler */

/* #endregion /Live Update Toggler */
/* #endregion /Dashboard */
/* #region Users*/
#tuneUserDropdown .dropdown-menu a:hover {
    background-color: #268bd2;
}

/* Wrapper for centering the image */
#usersListCard .profile-pic-wrapper {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    height: 100%; /* Ensures the wrapper spans the full height of the cell */
}

/* Profile container for positioning the status indicator */
#usersListCard .profile-pic-container {
    position: relative;
    display: inline-block;
}

#usersListCard .profile-pic {
    width: 50px; /* Adjust as needed */
    height: 50px; /* Same as width for a perfect circle */
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the entire circle area */
    border: none; /* Removes any border */
}

/* Status indicator (green for online, red for offline) */
.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

/* Online status */
.status-indicator.online {
    background-color: #28a745;
}

/* Offline status */
.status-indicator.offline {
    background-color: #dc3545;
}
/* #endregion /Users*/
/* #region Logger */
#loggerClientTable i {
    color: white;
    /*z-index: 1 !important;*/
    /*display: none;*/
}
#loggerClientTable i:hover {
    color: white;
    padding-bottom: 3px;
    border-bottom: 2px solid white;
}

#loggerTabs .nav-link.active {
    border-bottom: 2px solid #268bd2 !important;
    color: white;
}

#logModalTabs .nav-link.active {
    border-bottom: 2px solid #268bd2 !important;
    color: white;
}
/* #endregion /Logger */
/* #endregion /Admin*/

/* #region Portfolio */
/* #region Graphic Design */
.nav-tabs-container {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.nav-tabs-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.nav-tabs {
    display: inline-flex;
    flex-wrap: nowrap;
}

.grid-item:hover {
    cursor: pointer;
}
#reviewsGrid .grid-item:hover {
    cursor: default;
}

#cincypaaGrid .grid-sizer, 
#cincypaaGrid .grid-item {
    width: 25%; /* Adjust as needed */
}
#flyersGrid .grid-sizer, 
#flyersGrid .grid-item {
    width: 20%; /* Adjust as needed */
}
#businessCardsGrid .grid-sizer,
#businessCardsGrid .grid-item {
    width: 20%; /* Adjust as needed */
}
/* #endregion /Graphic Design */
/* #region Letters Of Recommendation */
#LettersOfRecommendation i {
    color: white;
}
#LettersOfRecommendation i:hover {
    color: #268bd2;
}
.border-bottom-white {
    border-bottom-color: white !important
}
/* #endregion /Letters Of Recommendation */
/* #endregion /Portfolio */

/* #region Reviews */
#reviewForm .icon-star-full2 {
    font-size: 2rem;
    padding-right: 5px;        
}

.star-filled {
    color: gold;
}

.review-card {
    background-color: white;
    border-right: 3px solid #268bd2 !important;
    border-bottom: 3px solid #268bd2 !important;
    color: black;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.review-username {
    font-weight: 600;
}

.review-date {
    font-size: 0.7rem;
    color: gray;
}

#campbellsCodeReviews .card-header {
    background-color: #202125 !important;
    margin-bottom: 10px;
    border: none;
    /*border-bottom: 1px solid #eee;*/
}

#campbellsCodeReviews .card-title {
    color: white;
}

#campbellsCodeReviews .card-footer {
    background-color: #ccc;
    border-top: 2px solid #202125;
    margin-top: 10px;
}

.review-content {
    color: #202125;
    flex: 1 1 auto;
    overflow: auto;
}

.review-star {
    font-size: 1rem;
}

.review-quote-icon {
    font-size: 2rem;
    color: #92c5e8;
}

/* Optional: Scrollbar Styling */
.review-content::-webkit-scrollbar {
    width: 6px;
}

.review-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}
/* #endregion /Reviews */

/* #region Links */
.hover-effect {
    color: white !important;
}
.hover-effect:hover {
    color: #268bd2 !important;
    cursor: pointer;
}
/* #endregion /Links */

/* #region Buttons */
#navbarSignInButton, #navbarSignUpButton, #navbarSignOutButton {
    width: 5.5rem;
}
#navbarSignInButton i, #navbarSignUpButton i, #navbarSignOutButton i {
    margin-right: 6px;
}

.btn-xxs {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    line-height: 1;
    border-radius: 0.15rem;
}

.icon-button {
    background: none; /* Remove background */
    border: none; /* Remove border */
    padding: 0; /* Remove padding */
    cursor: pointer; /* Make it look like it's clickable */
    outline: none; /* Remove outline when focused */
}
.icon-button i {
    font-size: inherit; /* Keep icon size consistent with surrounding text */
    color: white; /* Use the inherited color or specify a custom color */
}
/*.icon-button:hover i {
    color: #cc4744;*/ /* Optional: Change color on hover for a better UX */
/*}*/

#save_cancel_clear_wrapper .row {
    justify-content: end;
}
#saveButton, #cancelButton, #clearButton {
    max-width: 5rem;
    width: 5rem;
    /*box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.75);*/
}
#saveButton i, #cancelButton i, #clearButton i {
    margin-right: 0.25rem !important;    
}
#saveButton:active, #cancelButton:active, #clearButton:active {
    /*box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.75);*/
}

.btn-disabled {
    background-color: #8e919d !important;
    border-color: #8e919d !important;
}
/* #endregion /Buttons */

/* #region Cards */
.datatable-card {
    max-height: 81vh;
    height: 100%;
}

.datatable-card-with-tabs {
    max-height: 65vh;
    height: 100%;
}

.card-header {
    background-color: #2c2d33;
    z-index: 1000;
}

.card-shadow {
    box-shadow: 8px 8px 9px -4px rgba(0,0,0,0.9);
}
/* #endregion /Cards */

/* #region Tabs */
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-bottom: 2px solid #268bd2; /* Set the desired underline color */
}
/* #endregion /Tabs */

/* #region Dropdowns */
#filter {
    z-index: 1001 !important;
}

#filterDropdown {
    z-index: 1002 !important;
    /*display: block !important;*/ /* Optional: force visible for debugging */
}
/* #endregion /Dropdowns */

/* #region Forms */
#innerContentArea input:focus, #innerContentArea textarea:focus, #innerContentArea select:focus {
    outline: none !important;
    border-left-color: #202125 !important;
    border-top-color: #202125 !important;
    border-right-color: #202125 !important;
    border-bottom-color: #268bd2 !important;
    /*-webkit-box-shadow: 4px 5px 9px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 5px 9px -1px rgba(0,0,0,0.75);
    box-shadow: 4px 5px 9px -1px rgba(0,0,0,0.75);*/
}

/* #region Base Styles for Input Elements */
/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

input, textarea {
    border: none !important;
    border-bottom: 1px solid #000 !important; /* Default underline color */
    outline: none !important; /* Remove default focus outline */
    transition: border-bottom-color 0.3s ease !important; /* Add a smooth transition effect */
}

    /* Style the input field when it is in focus */
    input:focus, textarea:focus {
        border-bottom-color: #268bd2 !important; /* Change underline color on focus */
    }
/* #endregion /Base Styles for Input Elements */

/* #region Register */
#registrationForm .alert-sm {
    display: relative;
    padding: 0.29rem 0.5rem !important;
    font-size: 0.7rem !important;
}

#registrationForm .alert-dismissible .close {
    display: absolute;
    top: -14px;
    right: -14px;
}
/* #endregion /Register */

/* #region Login */
#loginForm .alert-sm {
    display: relative;
    padding: 0.29rem 0.5rem !important;
    font-size: 0.7rem !important;
}

#loginForm .alert-dismissible .close {
    display: absolute;
    top: -14px;
    right: -14px;
}
/* #endregion /Login */

/* #region Forgot Password */
#forgotPasswordForm .alert-sm {
    display: relative;
    padding: 0.29rem 0.5rem !important;
    font-size: 0.7rem !important;
}

#forgotPasswordForm .alert-dismissible .close {
    display: absolute;
    top: -14px;
    right: -14px;
}
/* #endregion /Forgot Password */

/* #region Reset Password */
#resetPasswordForm .alert-sm {
    display: relative;
    padding: 0.29rem 0.5rem !important;
    font-size: 0.7rem !important;
}

#resetPasswordForm .alert-dismissible .close {
    display: absolute;
    top: -14px;
    right: -14px;
}
/* #endregion /Reset Password */

/* #region Change Password */
#changePasswordForm .alert-sm {
    display: relative;
    padding: 0.29rem 0.5rem !important;
    font-size: 0.7rem !important;
}

#changePasswordForm .alert-dismissible .close {
    display: absolute;
    top: -14px;
    right: -14px;
}
/* #endregion /Change Password */

/* #region Two-Factor Verify Code */
#twoFactorVerifyCodeForm .alert-sm {
    display: relative;
    padding: 0.29rem 0.5rem !important;
    font-size: 0.7rem !important;
}

#twoFactorVerifyCodeForm .alert-dismissible .close {
    display: absolute;
    top: -14px;
    right: -14px;
}
/* #endregion /Two-Factor Verify Code */

/* #region My Profile/Full Edit */
#campbellscodeMyProfile input,
#campbellscodeMyProfile select,
#campbellscodeMyProfile textarea,
#campbellsCodeFullEdit input,
#campbellsCodeFullEdit select,
#campbellsCodeFullEdit textarea {
    max-width: 100% !important;
}

#myProfileUserForm .alert-sm {
    display: relative;
    padding: 0.29rem 0.5rem !important;
    font-size: 0.7rem !important;
}

#myProfileUserForm .alert-dismissible .close {
    display: absolute;
    top: -14px;
    right: -14px;
}
/* #endregion /My Profile/Full Edit */

/* #region Select2 */
.select2-container {
    z-index: 999 !important; /* Ensure Select2 is above the modal */
}

/* Remove the blue border on focus */
#campbellsCodeAdminUsers .select2-container--default .select2-selection--single .select2-selection__rendered,
#campbellsCodeAdminLogger .select2-container--default .select2-selection--single .select2-selection__rendered {
    outline: none !important;
    border: none !important; /* Removes the border */
    box-shadow: none !important; /* Removes the shadow */
}

/* Remove the default focus border on the entire selection */
#campbellsCodeAdminUsers .select2-container--default .select2-selection--single,
#registerMainCard .select2-container--default .select2-selection--single,
#myProfileMainCard .select2-container--default .select2-selection--single,
#userLogModal .select2-container--default .select2-selection--single {
    border-color: #202125 !important;
    box-shadow: none;
}

/* Blue bottom border on focus */
#campbellsCodeAdminUsers .select2-container--default .select2-selection--single:focus,
#registerMainCard .select2-container--default .select2-selection--single:focus,
#myProfileMainCard .select2-container--default .select2-selection--single:focus,
#userLogModal .select2-container--default .select2-selection--single:focus {
    border-bottom-color: #268bd2 !important;
    box-shadow: none;
}

/* Background color when hovering over an option */
#campbellsCodeAdminUsers .select2-container--default .select2-results__option--highlighted,
#registerMainCard .select2-container--default .select2-results__option--highlighted,
#myProfileMainCard .select2-container--default .select2-results__option--highlighted,
#userLogModal .select2-container--default .select2-results__option--highlighted {
    background-color: lightgray !important; /* Light grey for hover state */
    /*color: #000;*/ /* Black text */
}

/* Background color when an option is selected */
#campbellsCodeAdminUsers .select2-container--default .select2-results__option[aria-selected=true],
#registerMainCard .select2-container--default .select2-results__option[aria-selected=true],
#myProfileMainCard .select2-container--default .select2-results__option[aria-selected=true],
#userLogModal .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #268bd2 !important;
    /*color: #000;*/ /* Black text */
}

/* Ensure no blue background appears when hovering off */
#campbellsCodeAdminUsers .select2-container--default .select2-results__option--highlighted[aria-selected=false],
#registerMainCard .select2-container--default .select2-results__option--highlighted[aria-selected=false],
#myProfileMainCard .select2-container--default .select2-results__option--highlighted[aria-selected=false],
#userLogModal .select2-container--default .select2-results__option--highlighted[aria-selected=false] {
    background-color: #8e919d !important; /* Same as hover state */
    /*color: #000;*/
}

/* Clear any background color on hover off */
#campbellsCodeAdminUsers .select2-container--default .select2-results__option--highlighted:hover,
#registerMainCard .select2-container--default .select2-results__option--highlighted:hover,
#myProfileMainCard .select2-container--default .select2-results__option--highlighted:hover,
#userLogModal .select2-container--default .select2-results__option--highlighted:hover {
    background-color: #8e919d !important;
}
/* #endregion /Select2 */

/* #region Pickers */
.input-group {
    display: flex;
    /*align-items: center;*/
    position: relative; /* Make it a positioned container for absolute positioning */
}

.input-group-text {
    background-color: #268bd2;
    cursor: pointer;
}

.picker__holder {
    position: absolute;
    right: 0;
    top: calc(100% + 5px); /* Adjust 5px as needed to provide spacing between the icon and picker */
    z-index: 1000; /* Ensure it's above other elements */
}

/* #endregion /Pickers */

/* #region Checkboxes */
/* All custom checkbox backgrounds white */
#soberSoftMeetingMinutes .custom-control-label::before,
#registrationForm .custom-control-label::before,
#loginForm .custom-control-label::before,
#usersRolesTable .custom-control-label::before,
#fullEditRolesTable .custom-control-label::before,
#usersPermissionsTable .custom-control-label::before,
#fullEditPermissionsTable .custom-control-label::before,
#rolePermissionsTable .custom-control-label::before {
    background-color: white !important;
}

/* Success custom checkboxes */
#soberSoftMeetingMinutes .custom-control-success .custom-control-input:checked ~ .custom-control-label::after,
#registrationForm .custom-control-success .custom-control-input:checked ~ .custom-control-label::after,
#registrationForm .custom-control-success .custom-control-input:disabled:checked ~ .custom-control-label::after,
#loginForm .custom-control-success .custom-control-input:checked ~ .custom-control-label::after,
#loginForm .custom-control-success .custom-control-input:disabled:checked ~ .custom-control-label::after,
#usersRolesTable .custom-control-success .custom-control-input:checked ~ .custom-control-label::after,
#usersRolesTable .custom-control-success .custom-control-input:disabled:checked ~ .custom-control-label::after,
#fullEditRolesTable .custom-control-success .custom-control-input:checked ~ .custom-control-label::after,
#fullEditRolesTable .custom-control-success .custom-control-input:disabled:checked ~ .custom-control-label::after,
#usersPermissionsTable .custom-control-success .custom-control-input:checked ~ .custom-control-label::after,
#usersPermissionsTable .custom-control-success .custom-control-input:disabled:checked ~ .custom-control-label::after,
#fullEditPermissionsTable .custom-control-success .custom-control-input:checked ~ .custom-control-label::after,
#fullEditPermissionsTable .custom-control-success .custom-control-input:disabled:checked ~ .custom-control-label::after,
#rolePermissionsTable .custom-control-success .custom-control-input:checked ~ .custom-control-label::after,
#rolePermissionsTable .custom-control-success .custom-control-input:disabled:checked ~ .custom-control-label::after {
    background-color: #43a76f !important;
    border-color: #43a76f !important;
    border-radius: .1875rem;
}
/* #endregion /Checkboxes */
/* #endregion /Forms */

/* #region Modals */
.modal-header {
    background-color: #268bd2;
}

.modal-content input, 
.modal-content select, 
.modal-content textarea {
    max-width: 100% !important;
}

.modal-content .form-control-sm {
    color: white;
    background-color: #202125;
}

/* #region Checkbox */
.modal-content .checkbox-wrapper {
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically center the items */
}

.modal-content .checkbox {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.modal-content .checkbox-label {
    margin: 0; /* Remove default margins */
    line-height: 1; /* Reset line height */
    vertical-align: middle; /* Vertically center the label */
}
/* #endregion /Checkbox */

/* #region Validation */
.modal-content .alert-sm {
    display: relative;
    padding: 0.29rem 0.5rem !important;
    font-size: 0.7rem !important;
}

.modal-content .alert-dismissible .close {
    display: absolute;
    top: -14px;
    right: -14px;
}

.scrollable-modal-body {
    max-height: 70vh; /* Set the maximum height relative to the viewport */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 1rem; /* Optional: Add padding for better spacing */
}


/* #endregion /Validation */
/* #endregion /Modals */

/* #region Tables */
.scrollable-table {
    overflow-x: hidden;
    overflow-y: auto;    
    line-height: 1.25rem;
    text-align: left;
}

/* For data loaded by viewmodel */
#adminLogger .scrollable-cell {
    display: block;
    max-width: 730px; /* Set a width for the cell */
    height: 130px !important; /* Set a fixed height for the cell */
    overflow-y: auto !important; /* Enable vertical scrolling */
    overflow-x: hidden; /* Disable horizontal scrolling */
    word-wrap: break-word; /* Allow long words to break and wrap */
    white-space: normal; /* Allow text to wrap normally */
    /*padding: 5px;*/ /* Optional: Add some padding for better readability */
    /*box-sizing: border-box;*/ /* Ensure padding is included in width/height calculations */
} 

.table-header-wrapper {
    background-color: #268bd2;
}
.table-header-wrapper i {
    position: relative;    
    left: 5px;
    font-size: 1.25rem;    
}

th {
    white-space: nowrap; /* Prevents header text from wrapping */
}

tr:hover {
    background-color: #43464e;
}

#usersRolesCard .card-body,
#usersPermissionsCard .card-body,
#rolePermissionsCard .card-body 
{
    padding: 0 !important;
}

#usersRolesTable, 
#usersPermissionsTable,
#rolePermissionsTable
{
    background-color: #1d1e21;
}

#usersRolesTable td,
#usersPermissionsTable td,
#rolePermissionsTable td {
    border: none !important;
    padding-bottom: unset;
}

#usersRolesTable th,
#usersPermissionsTable th,
#rolePermissionsTable th
{
    background-color: #268bd2;
}

#usersTable td,
#userAgentsTable td,
#organizationsTable td,
#passwordVaultTable td,
#projectsTable td,
#projectStatusesTable td,
#loggerClientTable td,
#loggerNavHistoryTable td {
    white-space: nowrap;
}

#usersRolesCard .row .icon-rotate-cw2,
#usersPermissionsCard .row .icon-rotate-cw2 {
    padding-left: 13px;
}
#usersRolesCard .row .icon-checkbox-checked2,
#usersPermissionsCard .row .icon-checkbox-checked2 {
    padding-left: 6px;
}

#rolePermissionsCard .row .icon-rotate-cw2 {
    padding-left: 31px;
}
#rolePermissionsCard .row .icon-checkbox-checked2 {
    padding-left: 24px;
}
/* #endregion /Tables */

/* #region DataTable Lists */
/* #region DataTable Links */
.dt-link {
    color: white;
}

.dt-link:hover {
    color: white;
    text-decoration: underline;
}

.dt-link-cc {
    color: white;
}

.dt-link-cc:hover {
    color: #268bd2;
    text-decoration: underline;
}

#campbellsCodeAdminUsers .dt-email-link:hover {
    color: #268bd2;
}
/* #endregion /DataTable Links */

.datatable-filters-wrapper {
display: flex;
}
/*.datatable-filters-wrapper i:hover {
color: #268bd2;
}*/

/* Success/Show */
#dataTableActions .success-btn:hover {
    background-color: #43a76f;
    border-color: #43a76f !important;
}

.show-toggle-username-btn:hover,
.show-toggle-email-btn:hover,
.show-toggle-password-btn:hover,
#dataTableActions .show-btn:hover {
    background-color: #43a76f;
    border-color: #43a76f !important;
}

/* Warning */
#dataTableActions .edit-btn:hover {
    background-color: #c76932;
    border-color: #c76932 !important;
}

/* Danger */
#dataTableActions .delete-btn:hover {
    background-color: #cc4744;
    border-color: #cc4744 !important;
}

.dt-filter-danger {
    color: #cc4744 !important;
}

.hide-toggle-username-btn:hover,
.hide-toggle-email-btn:hover,
.hide-toggle-password-btn:hover,
#dataTableActions .hide-btn:hover {
    background-color: #cc4744;
    border-color: #cc4744 !important;
}

.dt-row-success-hover-color {
    background-color: #83deab !important;
}

.dt-row-warning-hover-color {
    background-color: #dda584 !important;
}

.dt-row-danger-hover-color {
    background-color: #e0918f !important;    
}

.col-small {
    max-width: 300px !important;
    width: 300px !important;
}

.col-long {
    max-width: 871px !important;
    width: 871px !important;
}
/* #endregion /DataTable Lists */

/* #region DataTable Cards */
.data-card {
    z-index: 995;
}
/* #endregion /DataTable Cards */

/* #region Specific DataTables */
/* #region Sticky Header */
#notificationsScrollArea,
#organizationsScrollArea,
#usersScrollArea,
#rolesScrollArea,
#permissionsScrollArea,
#loggerClientScrollArea,
#loggerServerScrollArea,
#loggerNavHistoryScrollArea,
#passwordVaultScrollArea {
    height: 100%;
    max-height: 100%;
    overflow: auto;
    z-index: 998 !important;
}

#notificationsScrollArea th,
#organizationsScrollArea th,
#usersScrollArea th,
#rolesScrollArea th,
#permissionsScrollArea th,
#loggerClientScrollArea th,
#loggerServerScrollArea th,
#loggerNavHistoryScrollArea th,
#passwordVaultScrollArea th {
    position: sticky;
    top: 0px;
    background-color: #1d1e21;
    color: white;
    z-index: 999 !important;
}
/* #endregion /Sticky Header */

/* #region Search */
#notificationsCustomSearchBox,
#organizationsCustomSearchBox,
#usersCustomSearchBox,
#rolesCustomSearchBox,
#permissionsCustomSearchBox,
#loggerClientCustomSearchBox,
#loggerServerCustomSearchBox,
#loggerNavHistoryCustomSearchBox,
#passwordVaultCustomSearchBox {
    padding-left: 8px !important;
}

#notificationsCustomSearchBox .dataTables_filter,
#organizationsCustomSearchBox .dataTables_filter,
#usersCustomSearchBox .dataTables_filter,
#rolesCustomSearchBox .dataTables_filter,
#permissionsCustomSearchBox .dataTables_filter,
#loggerClientCustomSearchBox .dataTables_filter,
#loggerServerCustomSearchBox .dataTables_filter,
#loggerNavHistoryCustomSearchBox .dataTables_filter,
#passwordVaultCustomSearchBox .dataTables_filter {
    margin: 0 !important;
    padding: 0 !important;
}

#notificationsCustomSearchBox .dataTables_filter input:focus,
#organizationsCustomSearchBox .dataTables_filter input:focus,
#usersCustomSearchBox .dataTables_filter input:focus,
#rolesCustomSearchBox .dataTables_filter input:focus,
#permissionsCustomSearchBox .dataTables_filter input:focus,
#loggerClientCustomSearchBox .dataTables_filter input:focus,
#loggerServerCustomSearchBox .dataTables_filter input:focus,
#loggerNavHistoryCustomSearchBox .dataTables_filter input:focus,
#passwordVaultCustomSearchBox .dataTables_filter input:focus {
    box-shadow: none !important;
    border-bottom: 1px solid #268bd2 !important;
}
/* #endregion /Search */

/* #region DataTable Filters */
/* Keep dropdown icons highlighted as long as dropdown is shown */
#campbellsCodeNotifications .dropdown.show i.main-icon,
#campbellsCodeAdminOrganizations .dropdown.show i.main-icon,
#campbellsCodeAdminUsers .dropdown.show i.main-icon,
#campbellsCodeAdminRoles .dropdown.show i.main-icon,
#campbellsCodeAdminPermissions .dropdown.show i.main-icon,
#campbellsCodePasswordVault .dropdown.show i.main-icon,
#campbellsCodeAdminLogger .dropdown.show i.main-icon {
    color: #268bd2;
}

#campbellsCodeNotifications .datatable-filters-wrapper i:hover,
#campbellsCodeAdminOrganizations .datatable-filters-wrapper i:hover,
#campbellsCodeAdminUsers .datatable-filters-wrapper i:hover,
#campbellsCodeAdminRoles .datatable-filters-wrapper i:hover,
#campbellsCodeAdminPermissions .datatable-filters-wrapper i:hover,
#campbellsCodePasswordVault .datatable-filters-wrapper i:hover,
#campbellsCodeAdminLogger .datatable-filters-wrapper i:hover {
    cursor: pointer;
    color: #268bd2;
}

#campbellsCodeAdminOrganizations #showDeletedButton[data-state="on"] i,
#campbellsCodeAdminUsers #showDeletedButton[data-state="on"] i {
    /*#campbellsCodePasswordVault #showDeletedButton[data-state="on"] i {*/
    color: #cc4744 !important;
}

#campbellsCodeAdminOrganizations #showDeletedButton[data-state="off"] i,
#campbellsCodeAdminUsers #showDeletedButton[data-state="off"] i {
    /*#campbellsCodePasswordVault #showDeletedButton[data-state="off"] i {*/
    color: white !important;
}

#campbellsCodeAdminOrganizations #showDeletedButton[data-state="off"] i:hover,
#campbellsCodeAdminUsers #showDeletedButton[data-state="off"] i:hover,
#campbellsCodePasswordVault #showDeletedButton[data-state="off"] i:hover {
    color: #268bd2 !important;
}
/* #endregion /DataTable Filters */

/* #region DataTable Actions */
/*#campbellsCodeAdminOrganizations #dataTableActions .edit-btn,
#campbellsCodeAdminUsers #dataTableActions .edit-btn,
#campbellsCodeAdminRoles #dataTableActions .edit-btn,
#campbellsCodeAdminPermissions #dataTableActions .edit-btn 
{
    background-color: #268bd2;
}

#campbellsCodeAdminOrganizations #dataTableActions .delete-btn,
#campbellsCodeAdminUsers #dataTableActions .delete-btn,
#campbellsCodeAdminRoles #dataTableActions .delete-btn,
#campbellsCodeAdminPermissions #dataTableActions .delete-btn 
{
    background-color: #268bd2;
}*/
/* #endregion /DataTable Actions */

/* #region Length */
#notificationsCustomTableLength .dataTables_length select:focus,
#passwordVaultCustomTableLength .dataTables_length select:focus {
    box-shadow: none !important;
    border-bottom: 1px solid #268bd2 !important;
}
/* #endregion /Length */

/* #region Export Buttons */
#notificationsListCard .dt-button,
#organizationsListCard .dt-button,
#usersListCard .dt-button,
#rolesListCard .dt-button,
#permissionsListCard .dt-button,
#passwordVaultListCard .dt-button,
#loggerClientListCard .dt-button,
#loggerServerListCard .dt-button,
#loggerNavHistoryListCard .dt-button {
    color: black !important;
    background-color: white !important;
    margin-left: 5px !important;
    border-radius: 7px !important;
    border: none !important;
    padding: 5px !important;
}

#notificationsListCard .dt-button:hover,
#organizationsListCard .dt-button:hover,
#usersListCard .dt-button:hover,
#rolesListCard .dt-button:hover,
#permissionsListCard .dt-button:hover,
#passwordVaultListCard .dt-button:hover,
#loggerClientListCard .dt-button:hover,
#loggerServerListCard .dt-button:hover,
#loggerNavHistoryListCard .dt-button:hover {
    color: white !important;
    background-color: #268bd2 !important;
}
/* #endregion /Export Buttons */

/* #region Pagination */
#campbellsCodeNotifications .dataTables_paginate .paginate_button.current,
#campbellsCodeAdminOrganizations .dataTables_paginate .paginate_button.current,
#campbellsCodeAdminUsers .dataTables_paginate .paginate_button.current,
#campbellsCodeAdminRoles .dataTables_paginate .paginate_button.current,
#campbellsCodeAdminPermissions .dataTables_paginate .paginate_button.current,
#campbellsCodePasswordVault .dataTables_paginate .paginate_button.current,
#campbellsCodeAdminLogger .dataTables_paginate .paginate_button.current {
    background-color: #268bd2;
}
/* #endregion /Pagination */
/* #endregion /Specific DataTables */

/* #region Server Requests Overlay and Spinner */
/* #region Main Static Overlay */
.main-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 1000; /* Should be lower than the modal’s z-index */
    display: none; /* Initially hidden */
}
/* #endregion /Main Static Overlay */

/* #region Views Overlay */
#axiosRequestOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);    
    z-index: 9999;
}

#axiosRequestSpinner {
    position: absolute;
    top: 50%;
    margin-top: -4em;
    left: 50%;
    margin-left: -4em;
    transform: translate(-50%, -50%);
    /*transform-origin: center center; /* Adjust the transform origin */
    animation: spin 1s linear infinite;
}
/* #endregion /Views Overlay */

/* #region DataTables Overlay */
.datatable-spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /*background-color: rgba(255, 255, 255, 0.7);*/ /*semi-transparent white*/
    z-index: 9999; /*adjust as needed */
    display: none; /*initially hidden */
}

.datatable-spinner {
    position: absolute;
    top: 50%;
    margin-top: -2em;
    left: 50%;
    margin-left: -2em;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
}
/* #endregion /DataTables Overlay */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* #endregion /Server Requests Overlay and Spinner */

/* #region Notifications */
.notification-header {
    background-color: #fff; /* Sticky header bg */
    /*border-bottom: 1px solid gray !important;*/
    padding-left: 1rem !important;
    background-color: #268bd2;
    /*border-top-left-radius: 5px;*/    
}

.notification-header small,
.notification-header a {
    display: flex;
    align-items: center;
}

.notification-link {
    font-size: 0.875rem;
    color: white;
    text-decoration: none;
}

.notification-link:hover {
    color: white;
    text-decoration: underline;
}

.notification-item-cc:hover {
    background-color: rgba(38, 139, 210, 0.3);
    border-bottom: 1px solid #268bd2 !important;
}

.notification-cc {
    /*background-color: #268bd2 !important;*/
    border-left: 5px solid #268bd2 !important;
    border-bottom: 1px solid gray !important;
}

.notification-cc:hover {
    border-left: 5px solid #268bd2 !important;
    border-bottom: none !important;
}

.dt-notification-cc {
    /*background-color: #268bd2 !important;*/
    background-color: rgba(38, 139, 210, 0.3) !important;
    /*border-left: 5px solid #268bd2 !important;*/
    box-shadow: inset 5px 0 0 #268bd2; /* visual left stripe */
    border-bottom: 1px solid gray !important;
}

.dt-notification-cc:hover {
    border-bottom: 2px solid #268bd2 !important;
}

#notificationDropdown .col-12 {
    transition: all 0.3s ease;
}
/* #endregion /Notifications */

/* #region Toasts */
.noty_body {
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}

.noty_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.close {
    background: transparent;
    border: none;
    cursor: pointer;
}

.noty_text {
    padding-top: 10px;
}

.noty_bar {
    box-shadow: none;
}
/* #endregion /Toasts */

/* #region Tooltips */
/* The .ui-tooltip class is declared in each cshtml view file */
/*.ui-tooltip {
    border-top: 2px solid #268bd2 !important;
    border-left: 2px solid #268bd2 !important;
    box-shadow: 2px 2px 5px #268bd2 !important;
    color: white;
    background-color: black;
}*/

.tooltip-icon-cc {
    color: white;
    cursor: pointer;
}

.tooltip-icon-cc:hover {
    color: #268bd2;
    cursor: pointer;
}

.tooltip-icon-cc:active {
    color: #268bd2;
    cursor: pointer;
}
/* #endregion /Tooltips */

/************************************************************************************************************************/

/* #region MEDIUM DEVICES */
/* md (medium devices, tablets): ≥ 768px*/
/* Styles for devices with a width of 768px and up */
@media (min-width: 768px) and (max-width: 1024px) and (hover: none) and (pointer: coarse) 
{
    /* #region Cards */
    .datatable-card {
        max-height: 80vh;
    }
    /* #endregion /Cards */

    /* #region Specific DataTables */
    /* #region Sticky Header */
    #emailSubscriptionsScrollArea,
    #notificationsScrollArea,
    #organizationsScrollArea,
    #usersScrollArea,
    #rolesScrollArea,
    #permissionsScrollArea,
    #loggerClientScrollArea,
    #loggerServerScrollArea,
    #loggerNavHistoryScrollArea,
    #passwordVaultScrollArea {
        height: 882px;
        max-height: 100%;
        overflow: auto;
    }
    /* #endregion /Sticky Header */
    /* #endregion /Specific DataTables */
}
/* #endregion /MEDIUM DEVICES */

/************************************************************************************************************************/

/* #region MOBILE DEVICES */
/* CSS for screens up to 767px width (typically mobile devices) */
@media only screen and (max-width: 767px) {
    .container-mobile-only {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;        
    }

    /* #region Cards */
    .datatable-card {
        max-height: 75vh;
    }
    /* #endregion /Cards */

    /* #region Buttons */
    #navbarSignInButton, #navbarSignUpButton, #navbarSignOutButton {
        width: 2rem !important;
        display: flex;
        text-align: center;
        justify-content: center;
    }
    
    #navbarSignInButton i, #navbarSignUpButton i, #navbarSignOutButton i {
        padding: 0;
        margin: 0;
    }
    
    #navbarSignInButton .btn-text, #navbarSignUpButton .btn-text, #navbarSignOutButton .btn-text {
        display: none;
    }

    #save_cancel_clear_wrapper .row {
        justify-content: center;
    }
    
    #saveButton, #cancelButton, #clearButton {
        max-width: 4rem !important;
        width: 4rem !important;
    }
    
    #saveButton i, #cancelButton i, #clearButton i {
        margin-left: 0.25rem !important;
    }

    .show-toggle-username-btn:hover,
    .show-toggle-email-btn:hover,
    .show-toggle-password-btn:hover,
    #dataTableActions .show-btn:hover {
        background-color: #268bd2;
        border-color: #268bd2 !important;
    }

    .hide-toggle-username-btn:hover,
    .hide-toggle-email-btn:hover,
    .hide-toggle-password-btn:hover,
    #dataTableActions .hide-btn:hover {
        background-color: #268bd2;
        border-color: #268bd2 !important;
    }
    /* #endregion /Buttons */

    /* #region Dropdowns */
    /* Remove box-shadow from filter dropdown */
    #filterDropdown {
        box-shadow: none !important;
        /*display: block !important;*/ /* Optional: force visible for debugging */
    }
    /* #endregion /Dropdowns */

    /* #region Full Edit */
    /* #region Roles and Permissions */
    #fullEditRolesCard .card-subheader,
    #fullEditPermissionsCard .card-subheader {
        padding-right: 0px;
    }

    #fullEditRolesTable tbody tr, 
    #fullEditPermissionsTable tbody tr { 
        padding-right: 13px;
    }
    /* #endregion /Roles and Permissions */
    /* #endregion /Full Edit */

    /* #region Portfolio */
    /* #region Graphic Design */
    #cincypaaGrid .grid-sizer, #cincypaaGrid .grid-item {
        width: 33.333%; /* Adjust as needed */
    }

    #flyersGrid .grid-sizer,
    #flyersGrid .grid-item {
        width: 50%; /* Adjust as needed */
    }

    #businessCardsGrid .grid-sizer,
    #businessCardsGrid .grid-item {
        width: 50%; /* Adjust as needed */
    }
    /* #endregion /Graphic Design */
    /* #endregion /Portfolio */

    /* #region Reviews */
    #reviewsGrid .grid-item {
        width: calc(100% - 10px); /* Adjust as needed */
    }

    #reviewForm .icon-star-full2 {
        font-size: 1.4rem;
        padding-right: 3px;
    }

    .star-filled {
        color: gold;
        padding-right: 3px;
    }

    #reviewContent {
        box-shadow: none !important;
    }
    /* #endregion /Reviews */

    /* #region Tables */
    #usersTable td,
    #rolesTable td {
        white-space: nowrap;
    }

    #usersRolesTable .row,
    #rolePermissionsTable .row {
        padding-right: 0.9rem;
    }
    
    #usersRolesCard .row i {
        padding-right: 0.9rem;
    }
    
    #usersRolesCard .row .icon-rotate-cw2,
    #usersPermissionsCard .row .icon-rotate-cw2 {
        padding-left: 7px;
    }

    #rolePermissionsCard .row .icon-rotate-cw2 {
        padding-left: 6px;
    }

    #usersPermissionsTable .row {
        padding-right: 0.9rem;
    }
    
    #usersPermissionsCard .row i {
        padding-right: 0.9rem;
    }
    
    #usersRolesCard .row .icon-checkbox-checked2,
    #usersPermissionsCard .row .icon-checkbox-checked2 {
        margin-left: -7px !important;        
    }    

    #rolePermissionsCard .row .icon-checkbox-checked2 {
        padding-left: 0px;
    }
    /* #endregion /Tables */

    /* #region DataTable Lists */
    /* #region DataTable Links */
    .dt-email-link {
        color: #268bd2;
    }

    .dt-link-cc {
        color: white;
        text-decoration: underline;
    }

    .dt-email-link-cc {
        color: #268bd2;
        text-decoration: underline;
    }
    /* #endregion /DataTable Links */

    /* Success/Show */
    /*#dataTableActions .success-btn:hover {
        background-color: none;
        border-color: none !important;
    }*/

    /* Warning */
    /*#dataTableActions .edit-btn:hover {
        background-color: none;
        border-color: none !important;
    }*/

    /* Danger */
    /*#dataTableActions .delete-btn:hover {
        background-color: none;
        border-color: none !important;
    }*/


    /* #endregion /DataTable Lists */

    /* #region Specific DataTables */
    /* #region Search */
    #notificationsCustomSearchBox,
    #organizationsCustomSearchBox,
    #usersCustomSearchBox,
    #rolesCustomSearchBox,
    #permissionsCustomSearchBox,
    #loggerClientCustomSearchBox,
    #loggerServerCustomSearchBox,
    #loggerNavHistoryCustomSearchBox,    
    #passwordVaultCustomSearchBox {
        padding-right: 3px;
    }

    #allRequestsScrollArea,
    #myRequestsScrollArea,
    #soberSoftFfcScrollArea,
    #soberSoftPastMeetingsScrollArea,
    #projectStatusesScrollArea,
    #projectsScrollArea,
    #emailSubscriptionsScrollArea,
    #notificationsScrollArea,
    #organizationsScrollArea,
    #usersScrollArea,
    #rolesScrollArea,
    #permissionsScrollArea,
    #loggerClientScrollArea,
    #loggerServerScrollArea,
    #loggerNavHistoryScrollArea,
    #passwordVaultScrollArea {
        height: 376px;
        max-height: 100%;
        overflow: auto;
    }
    /* #endregion /Search */

    /* #region DataTable Filters */
    #campbellsCodeNotifications #filterColumns.active,
    #campbellsCodeAdminOrganizations #filterColumns.active,
    #campbellsCodeAdminOrganizations #mainIcon.active,
    #campbellsCodeAdminOrganizations #settings.active,
    #campbellsCodeAdminUsers #filterColumns.active,
    #campbellsCodeAdminUsers #mainIcon.active,
    #campbellsCodeAdminUsers #settings.active,
    #campbellsCodeAdminRoles #filterColumns.active,
    #campbellsCodeAdminRoles #mainIcon.active,
    #campbellsCodeAdminRoles #settings.active,
    #campbellsCodeAdminPermissions #filterColumns.active,
    #campbellsCodeAdminPermissions #mainIcon.active,
    #campbellsCodeAdminPermissions #settings.active,
    #campbellsCodePasswordVault #filterColumns.active,
    #campbellsCodePasswordVault #mainIcon.active,
    #campbellsCodePasswordVault #settings.active,
    #campbellsCodeAdminLogger #filterColumns.active,
    #campbellsCodeAdminLogger #mainIcon.active,
    #campbellsCodeAdminLogger #settings.active {
        color: #268bd2 !important;
    }

    #campbellsCodeNotifications #refreshButton i,
    #campbellsCodeAdminOrganizations #refreshButton i,
    #campbellsCodeAdminUsers #refreshButton i,
    #campbellsCodeAdminRoles #refreshButton i,
    #campbellsCodeAdminPermissions #refreshButton i,
    #campbellsCodePasswordVault #refreshButton i,
    #campbellsCodeAdminLogger #refreshButton i {
        color: white !important;
    }

    #campbellsCodeAdminOrganizations #showDeletedButton[data-state="on"] i,
    #campbellsCodePasswordVault #showDeletedButton[data-state="on"] i,
    #campbellsCodeAdminUsers #showDeletedButton[data-state="on"] i {
        color: #dc3545 !important;
    }

    #campbellsCodeAdminOrganizations #showDeletedButton[data-state="off"] i,
    #campbellsCodePasswordVault #showDeletedButton[data-state="off"] i,
    #campbellsCodeAdminUsers #showDeletedButton[data-state="off"] i {
        color: white !important;
    }

    #campbellsCodeAdminOrganizations #showDeletedButton[data-state="off"] i:hover,
    #campbellsCodePasswordVault #showDeletedButton[data-state="off"] i:hover,
    #campbellsCodeAdminUsers #showDeletedButton[data-state="off"] i:hover {
        color: white !important;
    }
    /* #endregion /DataTable Filters */

    /* #region Export Buttons */
    /*#usersListCard .dt-button:hover,
    #organizationsListCard .dt-button:hover,
    #passwordVaultListCard .dt-button:hover,
    #loggerClientListCard .dt-button:hover,
    #loggerServerListCard .dt-button:hover,
    #loggerNavHistoryListCard .dt-button:hover {
        color: black;
        background-color: white;
    }*/
    /* #endregion /Export Buttons */
    /* #endregion /Specific DataTables */

    /* #region Server Requests Overlay and Spinner */
    #axiosRequestSpinner {
        position: absolute;
        top: 50%;
        margin-top: -2em;
        left: 50%;
        margin-left: -2em;
        transform: translate(-50%, -50%);
        /*transform-origin: center center; /* Adjust the transform origin */
        animation: spin 1s linear infinite;
    }
    /* #endregion /Server Requests Overlay and Spinner */
}
/* #endregion /MOBILE DEVICES */

/************************************************************************************************************************/

/* #region EXTRA SMALL DEVICES */
/* xs (extra small devices, portrait phones): < 576px*/
/* Styles for devices with a width less than 576px */
@media (max-width: 575.98px) {
    /* #region Home Page */
    /* #region App Cards */
    #AboutTheBusiness .card-footer {
        background-color: white;
    }

    #TheApps .card {
        background-color: white;
    }

    #TheApps img {
        width: 50px;
    }


    #homeAbacusAppCard {
        color: black;
        border-left: 2px solid #d6931f;
        border-bottom: 2px solid #d6931f;
    }

    #homeAbacusCardDescription {
        color: white;
        background-color: #d6931f !important;
        padding: 10px;
    }

    #homeAbacusAppCard .card-footer {
        background-color: black;
        /*border-right: 2px solid #d6931f;*/
    }

        #homeAbacusAppCard .card-footer i {
            color: #d6931f;
            cursor: pointer;
        }

    #homeHermesAppCard {
        color: black;
        border-left: 2px solid #ff0000;
        border-bottom: 2px solid #ff0000;
    }

    #homeHermesCardDescription {
        color: white;
        background-color: #ff0000 !important;
        padding: 10px;
    }

    #homeHermesAppCard .card-footer {
        background-color: black;
        /*border-right: 2px solid #d6931f;*/
    }

        #homeHermesAppCard .card-footer i {
            color: #ff0000;
            cursor: pointer;
        }

    #homeHourglassAppCard {
        color: black;
        border-left: 2px solid #7fd101;
        border-bottom: 2px solid #7fd101;
    }

    #homeHourglassCardDescription {
        color: white;
        background-color: #7fd101 !important;
        padding: 10px;
    }

    #homeHourglassAppCard .card-footer {
        background-color: black;
        /*border-right: 2px solid #d6931f;*/
    }

        #homeHourglassAppCard .card-footer i {
            color: #7fd101;
            cursor: pointer;
        }

    #homeSoberSoftAppCard {
        color: black;
        border-left: 2px solid #9f01f1;
        border-bottom: 2px solid #9f01f1;
    }

    #homeSoberSoftCardDescription {
        color: white;
        background-color: #9f01f1 !important;
        padding: 10px;
    }

    #homeSoberSoftAppCard .card-footer {
        background-color: black;
        /*border-right: 2px solid #d6931f;*/
    }

        #homeSoberSoftAppCard .card-footer i {
            color: #9f01f1;
            cursor: pointer;
        }
    /* #endregion /App Cards */
    /* #endregion /Home Page */


}
/* #endregion /EXTRA SMALL DEVICES */




