﻿
/* For webkit browsers (Chrome, Safari, Edge) */

/* Scrollbar width for both vertical and horizontal */
::-webkit-scrollbar {
    width: 10px; /* Vertical scrollbar width */
    height: 10px; /* Horizontal scrollbar height */
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


/* Custom styles for specific modals */
#searchModal[aria-hidden=true] {
    display: none;
}

#searchModal .project-tab #tabs .nav-tabs .nav-item.show .nav-link,
#searchModal .project-tab .nav-tabs .nav-link.active {
    color: #4c7cba; /* Green for Modal 1 */
    border-bottom-color: #4c7cba !important;
}

#videoContainer {
    border-right: none; /* Avoid border on the last container */
}


.search-loader-overlay {
    position: fixed; /* Cover the entire screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Black background with transparency */
    z-index: 1063; /* Above modal but below alerts */
    display: flex; /* Align items to center */
    align-items: center;
    justify-content: center;
}

.search-header {
    border-bottom: 1px solid #ddd;
    text-align: center;
    padding-bottom: 16px;
}

.search-result:hover .search-header {
    color: #4c7cba;
    border-bottom: 1px solid #4c7cba; /* Replace with the desired color */
    transition: border-bottom 0.3s ease; /* Optional smooth transition */
}

.mx-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.mx-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
}

.my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

.text-10-gray {
    font-size: 20px;
    font-weight: 500;
}

.search-video:hover {
    background-color: #ecf2f8;
    border-bottom: 1px solid #4c7cba;
    box-shadow: 0 4px 8px rgba(76, 124, 186, 0.2); /* Optional shadow */
}

.search-post:hover {
    background-color: #ecf2f8;
    border-bottom: 1px solid #4c7cba;
    box-shadow: 0 4px 8px rgba(76, 124, 186, 0.2); /* Optional shadow */
}

.notification-link {
    position: relative; /* Enables positioning the badge relative to the link */
}

.notification-badge {
    line-height: 100%;
    /* position: absolute;*/
    /*    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;*/
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-left: 6px;
    /*display: none;*/ /* Hidden by default */
}

    .notification-badge.show {
        display: inline-block; /* Display when there are notifications */
    }

.emoji-picker {
    border-top: 1px solid #ccc;
    background: #fff;
    box-shadow: none;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: none !important;
}

.emoji-picker-container {
    position: relative;
}

.emoji {
    font-size: 1.5em;
    line-height: 1;
    /*vertical-align: middle;*/
    display: inline;
    white-space: nowrap;
}

/*.circletag {
    display: block;
    width: 40px;
    height: 40px;
    background: #f6f6f6;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    text-align: center;
}

    .circletag img {
        margin-top: 8px;
    }
    .circletag i {
        display: inline-block;
        color: #989393;
    }*/

.circletag {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    width: 10vw; /* Responsive width */
    height: 10vw; /* Responsive height */
    max-width: 40px; /* Limits size on larger screens */
    max-height: 40px;
    background: #e6e8e6;
    border-radius: 50%; /* Ensures circular shape */
}

    .circletag img {
        width: 60%; /* Makes image responsive */
        height: auto;
    }

    .circletag i {
        font-size: 1.2em; /* Adjust icon size */
        color: #818281;
    }

.time-date {
    display: flex;
}

/*
.mt-7 {
    margin-top: 7px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-9 {
    margin-top: 5px;
}*/


