
.btn-google {
    background-color: #dd4b39 !important ;
}

.btn-facebook {
    background-color: #3b5998;
  }

.btn-github {
    background-color: #0077b5;
  }

.round-div {
display: inline-block;
width: 300px;
height: 300px;
border-radius: 50%;
/* background-color: lightgray ; */
position: relative;
overflow: hidden;
}

.round-div img {
width: 100%;
height: 100%;
object-fit: cover;
}

.edit-tint {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.round-div:hover .edit-tint {
opacity: 1;
}

.edit-icon {
color: white;
font-size: 24px;
}

/* START Custom Sidebar Styling */

/* .custom-sidebar {
    background: #1c2c52;
} */

.custom-sidebar {
    background: #1c2c52;
    position: relative;
    overflow: hidden;
}

.custom-sidebar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/storage/images/royaltech-icon-white.png') no-repeat center;
    background-size: 250%; /* Adjust size as needed */
    opacity: 0.03; /* Adjust for fade effect */
    z-index: 0;
    pointer-events: none; /* Ensures it doesn’t interfere with sidebar interactions */
}

.custom-sidebar .brand-link,
.custom-sidebar .navigation {
    position: relative;
    z-index: 1; /* Ensures sidebar content is above the background */
}

.menu-separator {
    /* background-color: #F00; */
    border-bottom: 1px solid #4f5962;
}

/* END Custom Sidebar Styling */


/* START Custom Search Results Styling */

.asset-search-results, .client-search-results {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 95%;
    display: none;
    position: absolute;
    z-index: 1000;  /* Ensure it appears above other elements */
    list-style-type: none;
    padding: 0;
}

.asset-search-results li, .client-search-results li {
    cursor: pointer;
    padding: 5px 10px;
}

.asset-search-results li:hover, .client-search-results li:hover {
    background-color: #f0f0f0;
}

.asset-search-results .no-result, .client-search-results .no-result {
    color: #888;
    font-style: italic;
    text-align: center;
    pointer-events: none;
}

.remove-item-btn {
    margin-top: 10px;
    margin-bottom: 10px;
}


/* END Custom Search Results Styling */


/* START Dashboard Styling */

.dash-card {

}

.custom-icon {
    font-size: 20px;
}

.dash-icon {
    font-size: 72px;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-text {
    font-size: 15px;
    border: 0px solid #FFF;
}

.dash-link {
    font-size: 16px;
    text-decoration: none;
}

.dash-card .d-flex.align-items-baseline small {
    margin-right: 0.5rem; /* Adjust spacing between small and h1 */
}

.custom-card-body {
    padding: 0.25rem 0.25rem; /* Adjust the top and bottom padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-card-body h1 {
    font-size: 42px;
}


.dash-row {
    display: flex;
    flex-wrap: wrap;
}

.dash-card-chart {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures the card grows to fill the row */
}

.bg-neutral {
    background-color: #2d3f69 !important;
}

/* .striped-list li:nth-child(odd) {
    background-color: #f8f9fa; Light gray for odd items
}

.striped-list li:nth-child(even) {
    background-color: #e9ecef; Slightly darker gray for even items
} */

.timestamp {
    /* font-size: 0.8em;  Adjust font size as needed */
    /* color: #6c757d;  Adjust color as needed */
    padding-top: 5px; /* Add some spacing above the timestamp */
}

/* END Dashboard Styling */


/* START Custom Table Styles  */


/* END Custom Table Styles  */

/* START Custom DataTable Button Styles  */

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 7.5px; /* Adjust the gap between buttons as needed */
}

.button-container a {
    flex: 1 1 calc(50% - 7.5px); /* Ensure two buttons per line with a small gap */
    text-align: center;
}

@media (min-width: 768px) {
    .button-container a {
        flex: 1 1 auto; /* Allow buttons to take their natural size on larger screens */
    }
}

/* Buttons + Search/Filter Styling - 04042025 */
.dataTables_wrapper .dataTables_filter {
    float: right;
    margin-left: 10px;
}
.dataTables_wrapper .dt-buttons {
    float: right;
    margin-left: 10px;
}

/* END Custom DataTable Button Styles  */

/* START Custom Badge Styles  */

.badge-outline-primary {
    color: #007bff; /* Bootstrap primary color */
    border: 1px solid #007bff;
    background-color: rgba(0, 123, 255, 0.1); /* Semi-transparent background */
}

.badge-outline-success {
    color: #28a745; /* Bootstrap success color */
    border: 1px solid #28a745;
    background-color: rgba(40, 167, 69, 0.1); /* Semi-transparent background */
}

.badge-outline-warning {
    color: #ffc107; /* Bootstrap warning color */
    border: 1px solid #ffc107;
    background-color: rgba(255, 193, 7, 0.1); /* Semi-transparent background */
}

.badge-outline-danger {
    color: #dc3545; /* Bootstrap danger color */
    border: 1px solid #dc3545;
    background-color: rgba(220, 53, 69, 0.1); /* Semi-transparent background */
}

/* END Custom Badge Styles  */
