<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global */

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

*:focus {
    box-shadow: none !important;
}

main.content {
    margin-top: 24px;
    min-height: 100vh;
}

.truncate-four-lines {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

input:focus, textarea:focus, select:focus, .form-control:focus {
    outline: none !important; /* Remove the default outline */
    box-shadow: none !important; /* Remove the Bootstrap focus shadow */
    border-color: #ced4da !important; /* Keep the original border color */
}

.btn-transition {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

    .btn-transition.hidden {
        opacity: 0;
        transform: scale(0.95);
        pointer-events: none;
    }

/* End Global */

/* Global scrollbar styling for all scrollable elements */
::-webkit-scrollbar {
    border-radius: 8px;
    height: 10px;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #6f8caa;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f7f9;
    border-radius: 10px;
}

/* End Global scrollbar styling for all scrollable elements */

.responsive-image {
    min-height: 100%;
    max-height: 100%;
    min-width: 100%;
    max-width: 100%;
    object-fit: contain;
}

.input-group.custom-input-group {
    border-radius: 20px;
}

    .input-group.custom-input-group .form-control {
        background: transparent;
        border: none;
    }

    .input-group.custom-input-group .input-group-text-prepend {
        background: transparent;
        border: none;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .input-group.custom-input-group .input-group-text-append {
        background: transparent;
        border: none;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

v-divider {
    position: relative;
    margin: 0 8px;
}

    v-divider:after {
        content: '';
        position: absolute;
        border-left: 2px solid rgba(200, 200, 200, .5);
        height: 14px;
        top: 3px;
        z-index: -1;
    }

    v-divider:last-child:after {
        display: none;
        /* Hide the divider for the last block */
    }

/* End Global */

/* Desktop Navbar */
/* Add this to your existing CSS */
/* Target only direct nav-links, not those inside dropdown menus */
#topNavBar .navbar-nav &gt; .nav-item &gt; .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect - only for direct nav-links */
#topNavBar .navbar-nav &gt; .nav-item &gt; .nav-link:hover {
    color: #ff6b00 !important;
}

/* Active state - only for direct nav-links */
#topNavBar .navbar-nav &gt; .nav-item.active &gt; .nav-link {
    font-weight: 500;
}

/* Underline effect - only for direct nav-links */
#topNavBar .navbar-nav &gt; .nav-item &gt; .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b00;
    transition: width 0.3s ease;
}

#topNavBar .navbar-nav &gt; .nav-item.active &gt; .nav-link::after {
    width: 100%;
}

/* Optional: Add specific styles for dropdown menu links if needed */
#topNavBar .dropdown-menu .nav-link {
    position: static; /* Reset position */
    transition: none; /* Remove transition */
}

#topNavBar .dropdown-menu .nav-link:hover {
    color: inherit; /* Use default dropdown hover color */
    background-color: rgba(255, 255, 255, 0.1); /* Optional: subtle background on hover */
    border-radius: 8px;
}
/* End Desktop Navbar */

/* Mobile Navbar */

/* Offcanvas main container */
    #menuOffcanvas {
        width: 350px;
        background-color: #1b2235;
    }

    #menuOffcanvas .offcanvas-header {
        border-bottom: none;
        padding: 16px;
    }

    /* Profile Section */
    .profile-section {
        padding: 0;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Guest Profile */
    .guest-profile {
        padding: 20px;
    }

    .signin-button {
        width: 100%;
        padding: 10px;
        background-color: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        color: white;
        font-weight: 500;
        text-align: center;
        transition: all 0.2s ease;
    }

    .signin-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #ff6100;
        color: #ff6100;
    }

    /* User Profile */
    .user-profile {
        padding: 0;
    }

    .profile-info {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .profile-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
        font-size: 20px;
        color: #bdd9e5;
    }

    .profile-details {
        flex-grow: 1;
    }

    .username {
        font-weight: 600;
        font-size: 16px;
        color: white;
        line-height: 1.2;
    }

    .user-type {
        font-size: 12px;
        color: #bdd9e5;
        opacity: 0.8;
    }

    .profile-actions {
        display: flex;
        padding: 0;
    }

    .profile-link, .logout-link {
        flex: 1;
        padding: 12px 0;
        text-align: center;
        color: #bdd9e5;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .profile-link:last-child, .logout-link:last-child {
        border-right: none;
    }

    .profile-link i, .logout-link i {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .profile-link:hover, .logout-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ff6100;
    }

    /* Navigation items */
    #menuOffcanvas .offcanvas-body {
        padding-top: 10px;
    }

    #menuOffcanvas .offcanvas-body .nav-item {
        display: flex;
        align-items: center;
        padding: 8px 20px;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
        border-left: 4px solid transparent;
        cursor: pointer;
        font-size: 14px;
        margin-bottom: 2px;
        position: relative;
    }

    #menuOffcanvas .offcanvas-body .nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left: 4px solid #ff6100;
        border-radius: 5px;
    }

    #menuOffcanvas .offcanvas-body .nav-item.active {
        background: rgba(255, 255, 255, 0.15);
        border-left: 4px solid #ff6100;
        font-weight: 500;
        border-radius: 5px;
    }

    #menuOffcanvas .nav-link {
        width: 100%;
    }

    /* Footer styling */
    .offcanvas-footer {
        padding: 15px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: auto;
    }

    .offcanvas-footer .footer-link {
        color: #bdd9e5;
        opacity: 0.7;
        text-decoration: none;
        font-size: 12px;
        transition: all 0.2s ease;
    }

    .offcanvas-footer .footer-link:hover {
        opacity: 1;
        color: #ff6100;
    }

@media (min-width: 992px) {
    nav.navbar#mainNavBar .navbar-nav {
        width: 100%;
        justify-content: space-around;
    }
}

/* Mobile Navbar */

/* Authentication PopUp */

#LoginRegisterModal .nav-tabs,
.login-register-container .nav-tabs {
    border-bottom: unset;
}

    #LoginRegisterModal .nav-tabs .nav-link,
    #LoginRegisterModal .nav-tabs .nav-link,
    .login-register-container .nav-tabs .nav-link,
    .login-register-container .nav-tabs .nav-link {
        border: none;
        border-color: unset;
        border-top: 5px solid #414141;
        border-radius: unset;
        background: #eee;
        color: #414141;
        font-weight: 500;
    }

#LoginRegisterModal .modal-content,
.login-register-container .modal-content {
    border: none;
    border-radius: 0px;
}

#LoginRegisterModal .nav-tabs .nav-item.show .nav-link,
#LoginRegisterModal .nav-tabs .nav-link.active,
.login-register-container .nav-tabs .nav-item.show .nav-link,
.login-register-container .nav-tabs .nav-link.active {
    border-top: 5px solid var(--bs-blue);
    background: #fff;
    color: var(--bs-blue);
}

.login-with-google-btn {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    transition: .25s all;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    line-height: 1.1;
}

    .login-with-google-btn:hover {
        box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
    }

    .login-with-google-btn:active {
        background-color: #eeeeee;
    }

    .login-with-google-btn:focus {
        outline: none;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 3px #c8dafc;
    }

    .login-with-google-btn:disabled {
        filter: grayscale(100%);
        background-color: #ebebeb;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
        cursor: not-allowed;
    }

/* End Authentication PopUp */

/* Home Footer */

footer {
    background: var(--primary-blue);
}

.footer .footer-social-icon a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 15px;
}

    .footer .footer-social-icon a:hover {
        background: #1baaa0;
    }

.footer .footer-links {
    margin: 0;
}

    .footer .footer-links li + li {
        padding-top: 10px;
    }

    .footer .footer-links li a {
        position: relative;
    }

        .footer .footer-links li a:after {
            content: "";
            position: absolute;
            width: 0px;
            left: auto;
            right: 0;
            bottom: 0;
            height: 2px;
            transition: ease all 0.35s;
            background: var(--orange);
        }

        .footer .footer-links li a:hover:after {
            width: 100%;
            left: 0;
            right: auto;
        }

.footer .footer-top {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

    .footer .footer-top h5,
    .footer .footer-top .h5 {
        position: relative;
        font-size: 1.2rem;
        text-transform: uppercase;
    }

@media (min-width: 768px) {
    .footer .footer-top {
        padding-top: 2rem;
        padding-bottom: 1rem;
    }
}

@media (min-width: 992px) {
    .footer .footer-top {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
}

.footer .footer-border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer .footer-border-top.dark {
        border-top: 1px solid rgba(16, 16, 16, 0.1);
    }

.footer .footer-border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer .footer-border-bottom.dark {
        border-bottom: 1px solid rgba(16, 16, 16, 0.1);
    }

footer .theme-light-background {
    background: var(--light-blue) !important;
}

.white-link a {
    color: rgba(255, 255, 255, 0.65);
}

a {
    text-decoration: none
}

.avatar-lg img {
    width: 90px;
    height: 90px;
}

/* End Home Footer */

/* Member Item Box */

.member-item-box {
    height: 120px;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* End Member Item Box */

/* Glowing Button */
.glowing-btn {
    position: relative !important;
    display: inline-block; /* Ensures proper positioning */
    padding: 10px 20px;
    text-decoration: none;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    padding-right: .75rem !important;
    padding-left: .75rem !important;
}

/* Ensure text stays on top */
.glowing-btn &gt; span {
    position: relative !important;
    z-index: 1 !important;
}

/* Background layer */
.glowing-btn::after {
    content: "" !important;
    z-index: 0 !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #333 !important;
    left: 0 !important;
    top: 0 !important;
    border-radius: 10px !important;
}

/* Glowing effect (always active) */
.glowing-btn::before {
    content: "" !important;
    background: linear-gradient(45deg, #FF0000, #FF7300, #FFFB00, #48FF00, #00FFD5, #002BFF, #FF00C8, #FF0000) !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    background-size: 600% !important;
    z-index: 0 !important; /* Keep it below text */
    width: calc(100% + 4px) !important;
    height: calc(100% + 4px) !important;
    filter: blur(8px) !important;
    animation: glowing 10s linear infinite !important;
    transition: opacity .3s ease-in-out !important;
    border-radius: 10px !important;
    opacity: 1 !important; /* Always visible */
}

@keyframes glowing {
    0% {
        background-position: 0 0 !important;
    }
    50% {
        background-position: 400% 0 !important;
    }
    100% {
        background-position: 0 0 !important;
    }
}

/* End Glowing Button */

/* Auto resize textarea */
.auto-height-textarea {
    width: 100%;
    overflow: hidden; /* Prevent scrollbars */
    resize: none; /* Disable manual resizing */
}
/* End Auto resize textarea */


/* Bootstrap Avatar */
.avatar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 32px;
    width: 32px;
    font-size: 18px;
    line-height: 32px;
}

}
/* End Bootstrap Avatar */
</pre></body></html>