.b-date {
    color: #001aac;
    font-weight: bold;
}

.theme-highlighted-text {
    color: #001aac;
    font-weight: bold;
}

/*

    list-style: none;
    font-size: 16px;
    line-height: 30px;
*/


/* Dates Table */
.date-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
}

.date-table td {
    vertical-align: middle;
}

/* First column should only take as much space as needed */
.date-table td:first-child {
    text-align: left;
    white-space: nowrap;
    /* Prevent text wrapping */
    width: 1%;
    /* Only take the required space */
}

/* Second column should take the remaining space */
.date-table td:last-child {
    text-align: left;
    width: auto;
    padding: 8px;
}

/* Glow Animation 
@keyframes glowing {
    0% {
        text-shadow: 0 0 5px rgb(0, 217, 255);
    }

    50% {
        text-shadow: 0 0 20px rgb(0, 217, 255);
    }

    100% {
        text-shadow: 0 0 5px rgb(0, 217, 255);
    }
}
.b-date {
    animation: glowing 1.5s infinite alternate;
}
*/


/* Responsive text size */
@media screen and (max-width: 768px) {
    .date-table {
        font-size: 18px;
    }

}

@media screen and (max-width: 480px) {
    .date-table {
        font-size: 14px;
    }

    /* First column should only take as much space as needed */
    .date-table td:first-child {
        text-align: left;
        white-space: wrap !important;
        /* Prevent text wrapping */
        width: 50% !important;
        /* Only take the required space */
    }

    .date-table tr {
        padding-bottom: 20px !important;
    }

    /* Second column should take the remaining space */
    .date-table td:last-child {
        text-align: left;
        width: auto;
        padding: 8px;
    }
}


.copyright-text p {
    color: #a0a1b5;
}

/* Ensure dropdown lists are positioned relative to parent */
ul.dropdown, ul.subdropdown, ul.subsubdropdown {
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* First-level dropdown (opens downwards) */
ul.dropdown {
    left: 0;
    top: 100%;
}

/* Second-level dropdown (opens to left) */
ul.subdropdown {
    top: 0;
    right: 100%; /* instead of left: 100% */
    left: auto;  /* reset left positioning */
}

/* Third-level dropdown (also opens to left) */
ul.subsubdropdown {
    top: 0;
    right: 100%; /* instead of left: 100% */
    left: auto;
}

/* Optional: make sure links align properly */
ul.dropdown li,
ul.subdropdown li,
ul.subsubdropdown li {
    position: relative;
}


/*CFP*/