﻿.m-li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-li i {
    font-size: 14px;
}

.Thought-icon {
    font-weight: bold; /* Make the title stand out */
}

#ThoughtsOfDay_CTRLThought {
    font-size: 1em; /* Default font size */
    color: #ffffff; /* Medium gray for contrast */
    line-height: 1.6; /* Better readability with line height */
    margin-top: 10px; /* Space above the quote */
}

    #ThoughtsOfDay_CTRLThought a {
        color: yellow; /* Bright color for links */
        text-decoration: none; /* Remove underline by default */
    }

        #ThoughtsOfDay_CTRLThought a:hover {
            text-decoration: underline; /* Underline link on hover */
            color: red; /* Darker color on hover */
        }

.Description {
    text-align: center;
}

.Newbg {
    background-image: url('image/bg1.jpg');
    background-repeat: repeat;
}

/* Optimized CSS for UI */
.oasis-tab, .Committee-tab, .Disclosure-tab {
    position: fixed;
    padding: 0.625em 0.85em; /* 10px 20px equivalent */
    color: white;
    font-weight: bold;
    font-size: 1em; /* Default font size */
    border-radius: 0.313em; /* 5px equivalent */
    box-shadow: 0 0 0.625em rgba(0, 0, 0, 0.1); /* 10px shadow */
    text-decoration: none;
    display: inline-block;
    z-index: 99999;
    animation: fadeInOut 1s infinite;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.oasis-tab {
    top: 35%;
    right: 0;
    background-color: #a10e0e;
    border-radius: 0.313em 0 0 0.313em; /* Rounded right corners */
}

    .oasis-tab:hover {
        background-color: #1c8cdc;
        transform: scale(1.1); /* Slightly enlarge on hover */
    }

.Committee-tab {
    top: 50%;
    left: 0;
    background-color: #b30886;
    border-radius: 0 0.313em 0.313em 0; /* Rounded left corners */
}

    .Committee-tab:hover {
        background-color: #0073e6;
        transform: scale(1.1);
    }

.Disclosure-tab {
    top: 65%;
    left: 0;
    background-color: #cb2c12;
    border-radius: 0 0.313em 0.313em 0; /* Rounded left corners */
}

    .Disclosure-tab:hover {
        background-color: #ffff80;
        transform: scale(1.1);
    }

    .oasis-tab a, .Committee-tab a, .Disclosure-tab a {
        color: inherit; /* Inherit text color */
        text-decoration: none;
        font-size: .75em; /* Same as parent */
    }
.Committee-tab, .Disclosure-tab {
    font-size: 1.5em;
    padding: 0.425em 0.65em; /* 10px 20px equivalent */
}

        .oasis-tab a:hover, .Committee-tab a:hover, .Disclosure-tab a:hover {
            color: #ffd700; /* Gold color on hover */
        }

/* Responsive Design */
@media (max-width: 768px) {
    .oasis-tab, .Committee-tab, .Disclosure-tab {
        font-size: 0.875em; /* Slightly smaller font size */
        padding: 0.5em 0.938em; /* Reduced padding */
    }

    .oasis-tab {
        top: 30%;
    }

    .Committee-tab {
        top: 50%;
    }

    .Disclosure-tab {
        top: 60%;
    }

        .oasis-tab:hover, .Committee-tab:hover, .Disclosure-tab:hover {
            transform: scale(1.05); /* Subtle hover effect */
        }
}

@media (max-width: 480px) {
    .oasis-tab, .Committee-tab, .Disclosure-tab {
        font-size: 0.75em; /* Smaller font size */
        padding: 0.313em 0.625em; /* Minimal padding */
    }

    .oasis-tab {
        top: 25%;
    }

    .Committee-tab {
        top: 40%;
    }

    .Disclosure-tab {
        top: 50%;
    }

        .oasis-tab:hover, .Committee-tab:hover, .Disclosure-tab:hover {
            transform: scale(1.03); /* Minimal hover effect */
        }
}
