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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 0 auto;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* When the sticky copy bar (#target) is present, pad the bottom dynamically */
body.has-sticky {
    padding-bottom: var(--sticky-height, 80px);
}


/* Modern Header Styles */

.modern-header {
    background: linear-gradient(135deg, #1832d9, #0f24a8);
    box-shadow: 0 4px 20px rgba(24, 50, 217, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 0.75rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #1832d9;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-btn,
.favorites-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Hide Search and My Favorite Symbols site-wide */
.search-btn,
.favorites-btn,
.search-modal,
.favorites-modal,
.header-actions { display: none !important; }

.search-btn:hover,
.favorites-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #1832d9;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 0.5rem;
}

.search-result-item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.search-result-item:hover {
    background: #1832d9;
    color: white;
    transform: scale(1.05);
}



/* Navbar Start */


/* Modern Footer Styles */

.modern-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem 2rem;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c71585;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.privacy-manager-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.privacy-manager-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Favorites Modal */
.favorites-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.favorites-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1832d9, #0f24a8);
    color: white;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 0.25rem;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.favorites-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
}

.favorite-item {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    position: relative;
}

.favorite-item:hover {
    background: #1832d9;
    color: white;
    transform: scale(1.05);
}

.favorite-remove {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    display: none;
}

.favorite-item:hover .favorite-remove {
    display: block;
}

.no-favorites {
    text-align: center;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1832d9;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(24, 50, 217, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #0f24a8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 50, 217, 0.6);
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1832d9, #0f24a8);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0f24a8, #1832d9);
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1832d9, #0f24a8);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-actions {
        order: -1;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}


/* Sticky Bar Start */


#target {
    background: #000000;
    height: auto;
    display: block !important;
    margin-top: 10px;
    padding: 5px;
    display: table;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    clear: both;
    float: none;
    margin-bottom: 0;
    position: fixed;
    bottom: 0;
    background: #ffffff;
    z-index: 9;
}

@media screen and (max-width: 970px) {
    #target {
        margin-bottom: 0;
        padding: 5px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        box-shadow: 0px -2px 15px 0px rgb(0 0 0 / 55%);
    }
}

#target .copyboard {
    width: 100%;
    float: left;
    position: relative;
    color: #fff;
    padding-left: 10%;
    padding-right: 10%;
}

#target .input {
    width: 85%;
    float: left;
    position: relative;
    color: #fff;
}

#target .copy {
    float: left;
    width: 15%;
    text-align: center;
    position: relative;
    border-radius: 0 3px 3px 0;
    overflow: hidden;
}

@media screen and (max-width:800px) {
    #target .copyboard {
        padding-left: 5px;
        padding-right: 5px;
    }

    .headCont {
        margin: auto;
    }
}

.symbolBox {
    padding-bottom: 5px;
    display: flex;
    overflow: auto;
}

.symbol-item {
    color: black;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.1rem;
    min-width: 50px;
    text-align: center;
    vertical-align: text-top;
    overflow: hidden;
    border-color: #757575;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    font-size: 1.5rem;
    height: auto;
    line-height: 35px;
}

#symbol-container {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    float: left;
    position: relative;
    color: #fff;
}

.clear {
    float: left;
    padding: 5px 10px 5px;
    outline: none;
    cursor: pointer;
    border: none;
    background-color: #000000;
    color: #fff;
    border-radius: 5px;
    height: 40px;
}

#symbol-textbox {
    padding: 5px 50px 5px 5px;
    text-align: center;
    height: 40px;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%
}

#symbol-textbox:focus {
    outline: none
}

@media screen and (max-width:800px) {
    #symbol-textbox {
        padding: 5px 30px 5px 5px
    }
}

#clearButton {
    border: none;
    cursor: pointer;
    color: #000000;
    border-radius: 5px;
    font-size: 18px;
    margin-left: -8%;
    outline: none;
    cursor: pointer;
    background-color: transparent
}

#copyButton {
    padding: 5px;
    cursor: pointer;
    outline: none;
    border: none;
    background-color: #000000;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    height: 40px;
}

#clearButton {
    border: none;
    color: #000000;
    border-radius: 5px;
    font-size: 18px;
    margin-left: -8%;
    outline: none;
    cursor: pointer;
    background-color: transparent
}

.input span {
    display: flex;
}

/* Sticky Bar End */

span.share {
    float: left;
    color: #000000;
    padding: 8px 5px 8px 0;
}

/* Container Start */

.outcont {
    max-width: 1168px;
    margin: 0 auto;
}

.container {
    padding: 10px 5px 15px 5px;
    text-align: center;
    width: 100%;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.symbolContainer {
    padding: 10px 5px 15px 5px;
    text-align: center;
    width: 100%;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

@media screen and (max-width:800px) {
    .outcont {
        margin-left: 5px;
        margin-right: 5px;
    }
}

h1.titlesymbol {
    margin: 0 0 0.5rem 0;
    width: 100%;
    font-family: arial, sans-serif;
    font-size: 25px;
    padding: 5px 0;
    text-align: center;
    flex-basis: 100%;
}

h2.titlesymbol {
    font-size: 22px;
    font-weight: 700;
    margin: 2rem 0 10px 0;
    padding: 0 0 0 10px;
    text-decoration: none;
}

h2.titlesymbol a {
    text-decoration: none;
    color: #1832d9;
}

.maindata p {
    border-bottom: 1px solid #dbd4d8;
    font-size: 15px;
    margin: 0;
    padding: 0 0 5px;
}

.symbol {
    text-align: center;
    margin: 0.25rem;
    border-radius: 8px;
    color: #424949;
    border: 1px solid #d3d3d3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    font-size: 20px;
    overflow: hidden;
    box-shadow: 2px 2px 4px 2px #bfbfbf33;
    transition: all 0.2s ease;
    vertical-align: top;
}

.symbol:hover {
    background-color: #ececec;
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 4px 4px 4px 1px #9d9a9a33
}


@media screen and (max-width:800px) {
    .symbol {
        min-width: 50px;
        min-height: 50px;
        font-size: 18px;
        margin: 0.2rem;
    }

    h1.titlesymbol {
        font-size: 20px;
    }
    
    .container, .symbolContainer {
        padding: 5px;
    }
}

/* adjusted start */

#symbols.adjusted li .symbol {
    width: auto;
    height: auto;
    padding: 0 15px 5px;
    font-size: 25px;
}

@media screen and (max-width:800px) {
    #symbols.adjusted li .symbol {
        font-size: 15px;
        line-height: 40px
    }
}

/* adjusted end */


.tab-link {
    background: #e3e8eb;
    color: #333;
    padding: 12px 1px 0px 1px;
    font-size: 15px;
    border-radius: 5px;
    display: inline-block;
    width: 76px;
    margin: 5px 3px;
    text-align: center;
    max-width: 32%;
    border-bottom: 2px solid #ddd;
    height: 65px;
}

.tab-bar a {
    text-decoration: none;
}

.symbol-icon {
    font-size: 30px;
}

/* .container p{
    margin: 2rem 0rem 2rem 0rem;
} */

/* Container End */



/* copy css start */

.message {
    position: fixed;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1832d9;
    color: white;
    padding: 15px;
    font-size: 18px;
    max-width: 150px;
    font-weight: 600;
    border-radius: 5px;
}

/* Add these styles for the message-animate class */
.message-animate {
    animation: fadeInOut 1.5s ease-in-out;
}

/* Define the fadeInOut animation */
@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
    }

    25%,
    75% {
        opacity: 1;
    }
}


/* copy css end */


/* Sharing Button CSS Start*/

#target .share {
    padding-top: 5px;
    display: flex;
    float: left;
    text-transform: uppercase;
    color: #777;
    margin-right: 5px;
    font-size: 12px;
}

span.sharetext {
    padding: 8px 5px 8px 10px;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
    display: inline-block
}

.resp-sharing-button__link {
    text-decoration: none;
    color: #fff;
    margin: 0.5em
}

.resp-sharing-button {
    border-radius: 5px;
    transition: 25ms ease-out;
    padding: 0.5em 0.75em;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif
}

.resp-sharing-button__icon svg {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    vertical-align: top
}

.resp-sharing-button--small svg {
    margin: 0;
    vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
    stroke: #fff;
    fill: none
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
    fill: #fff;
    stroke: none
}

.resp-sharing-button--twitter {
    background-color: #55acee
}

.resp-sharing-button--twitter:hover {
    background-color: #2795e9
}

.resp-sharing-button--pinterest {
    background-color: #bd081c
}

.resp-sharing-button--pinterest:hover {
    background-color: #8c0615
}

.resp-sharing-button--facebook {
    background-color: #3b5998
}

.resp-sharing-button--facebook:hover {
    background-color: #2d4373
}

.resp-sharing-button--tumblr {
    background-color: #35465C
}

.resp-sharing-button--tumblr:hover {
    background-color: #222d3c
}

.resp-sharing-button--reddit {
    background-color: #5f99cf
}

.resp-sharing-button--reddit:hover {
    background-color: #3a80c1
}

.resp-sharing-button--google {
    background-color: #dd4b39
}

.resp-sharing-button--google:hover {
    background-color: #c23321
}

.resp-sharing-button--linkedin {
    background-color: #0077b5
}

.resp-sharing-button--linkedin:hover {
    background-color: #046293
}

.resp-sharing-button--email {
    background-color: #777
}

.resp-sharing-button--email:hover {
    background-color: #5e5e5e
}

.resp-sharing-button--xing {
    background-color: #1a7576
}

.resp-sharing-button--xing:hover {
    background-color: #114c4c
}

.resp-sharing-button--whatsapp {
    background-color: #25D366
}

.resp-sharing-button--whatsapp:hover {
    background-color: #1da851
}

.resp-sharing-button--hackernews {
    background-color: #FF6600
}

.resp-sharing-button--hackernews:hover,
.resp-sharing-button--hackernews:focus {
    background-color: #FB6200
}

.resp-sharing-button--vk {
    background-color: #507299
}

.resp-sharing-button--vk:hover {
    background-color: #43648c
}

.resp-sharing-button--facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
    background-color: #2d4373;
    border-color: #2d4373;
}

.resp-sharing-button--twitter {
    background-color: #55acee;
    border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
    background-color: #2795e9;
    border-color: #2795e9;
}

.resp-sharing-button--tumblr {
    background-color: #35465C;
    border-color: #35465C;
}

.resp-sharing-button--tumblr:hover,
.resp-sharing-button--tumblr:active {
    background-color: #222d3c;
    border-color: #222d3c;
}

.resp-sharing-button--pinterest {
    background-color: #bd081c;
    border-color: #bd081c;
}

.resp-sharing-button--pinterest:hover,
.resp-sharing-button--pinterest:active {
    background-color: #8c0615;
    border-color: #8c0615;
}

.resp-sharing-button--telegram {
    background-color: #54A9EB;
}

.resp-sharing-button--telegram:hover {
    background-color: #4B97D1;
}


/* Sharing Button CSS End*/

.symbolcat {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
    font-size: 18px;
}

.symbolcat a {
    margin-left: 5px;
    background: #ffffff;
    margin-bottom: 5px;
    color: #000000;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.5em;
    line-height: 1.5;
    padding: 0.4rem 0.7rem 0.7rem 0.5rem;
    text-decoration: none;
}

/* info start */
.info-title {
    padding: 0;
    margin-top: 15px;
    background-color: #fff;
    box-shadow: 2px 2px 12px 1px #d8d8d8
}

.info-title h2 {
    background-color: #1832d9;
    color: #fff;
    padding: 10px;
    text-align: center
}

@media screen and (max-width:800px) {
    .info-title {
        margin-left: 5px;
        margin-right: 5px
    }

    .info-title h2 {
        font-size: 1.2rem;
    }

    .info p {
        font-size: 0.9rem;
    }
}

.info {
    padding: 15px
}

.info p {
    margin-bottom: 5px;
    text-align: justify
}


#symbol-list {
    width: 100%;
    margin-top: 1rem;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 20px;
}

@media screen and (max-width:600px) {
    #symbol-list {
        padding-left: 5px;
        padding-right: 5px;
    }

    #symbol-list table tr td {
        font-size: 0.9rem;
    }
}

#symbol-list table {
    text-align: center;
    width: 100%;
    border-collapse: collapse;
}

#symbol-list table tr td {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

#symbol-list table th {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.table-symbol {
    font-size: 20px;
}

/* info end */



/* footer start */

#pmLink {
	visibility: hidden;
	text-decoration: none;
	cursor: pointer;
	background: transparent;
	border: none;
}
#pmLink:hover {
	visibility: visible;
	color: grey;
}

.footer {
    color: #cbcbcb;
    padding: 5px;
    text-align: center;
    background: #171616;
    margin: 20px 0 40px 0;
    padding-bottom: 20px; /* kept minimal; dynamic padding applied via body.has-sticky */
}

.footer p {
    font-size: 15px;
}

.footer div {
    color: #cbcbcb
}


.footlinks {
    text-decoration: none;
    color: #cbcbcb;
    margin: 10px;
    font-size: 15px;
}

@media screen and (max-width:800px) {
    .footer p {
        font-size: 0.7rem;
    }

    .footer a {
        font-size: 0.7rem;
    }
}


/* footer end */


.maindata {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.symbolTabel {
    margin-bottom: 10px;
}

.rightContainer {
    margin-top: 0.5rem;
    width: 70%;
}

#sidebar {
    width: 300px;
    float: left;
    width: 30%;
}


@media screen and (max-width:1024px) {
    .rightContainer {
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
    }
    #sidebar {
        display: none;
    }
}

@media screen and (max-width:800px) {


}

.page-load-status {
    text-align: center;
    color: #777;
    float: left;
    width: 100%;
}

.infinite-scroll-last {
    font-size: 20px;
    margin: 2px 0;
    padding: 2px 0;
}

a.page-next {
    visibility: hidden;
}

.aload {
    font-size: 20px;
    /* change size here */
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.aload span {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #1832d9;
    /* change color here */
    border: solid 2px #ffffff78;
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.aload span:nth-child(1),
.aload span:nth-child(2) {
    left: 0;
}

.aload span:nth-child(3) {
    left: 1.5em;
}

.aload span:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}

.aload span:nth-child(1) {
    animation-name: reveal;
}

.aload span:nth-child(2),
.aload span:nth-child(3) {
    animation-name: slide;
}

.aload span:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

p.page {
    float: left;
    width: 100%;
}

a.page-next {
    visibility: hidden;
}

.symbols {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100%;
}

/* Symbol section wrapper */
.symbol-section {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
}

.symbol-section .symbol {
    margin: 0.3rem;
}

/* left side menu */
.leftsection {
    float: left;
    width: 23%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: #c71585;
    box-shadow: 5px 1px 4px 0 rgba(0, 0, 0, .08);
    display: none;
}

.leftsection .close {
    position: absolute;
    right: -45px;
    top: 10px;
    font-size: 18px;
    padding: 10px 17px;
    border: none;
    background: #000000;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    z-index: 3;
}

.leftsection h2 {
    font-size: 19px;
    font-family: pacifico, cursive;
    text-align: center;
    background-color: black;
    color: white;
    margin: 0;
    padding: 5px;
    font-size: 1.4rem;
}

.leftsection h2 a {
    text-decoration: none;
    color: #fff;
    text-transform: none;
    font-size: 18px;
}

.bookmarks {
    overflow: scroll;
    height: 100%;
    padding-right: 3px;
}

.bookmarks a {
    text-align: right;
    font-family: sans-serif;
    font-size: 15px;
    color: white;
    text-decoration: none;
    display: block;
    text-align: right;
    padding: 10px 15px;
    text-transform: uppercase;
}

#mobile-fly-menu {
    display: block;
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 40px;
    float: left;
}

#mobile-fly-menu:hover span {
    background: #fff;
}

#mobile-fly-menu span:nth-child(1) {
    top: 10px;
    width: 38px;
}

#mobile-fly-menu span:nth-child(2) {
    top: 19px;
    width: 30px
}

#mobile-fly-menu span:nth-child(3) {
    top: 28px;
    width: 22px
}

#mobile-fly-menu span {
    display: block;
    position: absolute;
    left: 12px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    height: 4px;
    background: #ffffff8f
}

.bookmarks a:hover {
    background: #fff;
    color: #000;
}

@media only screen and (max-width:970px) {
    .leftsection {
        width: 60%;
    }

    .mads {
        width: 100%;
        height: 90px;
    }

    #mobile-fly-menu span:nth-child(1) {
        top: 9px;
        width: 38px;
    }

    #mobile-fly-menu span:nth-child(2) {
        top: 19px;
        width: 30px;
    }

    #mobile-fly-menu span:nth-child(3) {
        top: 28px;
        width: 22px;
    }

    #mobile-fly-menu {
        position: absolute;
    }
}


.ad {
    display: table !important;
    margin: 12px 0 !important;
    float: left;
    clear: both;
    width: 100% !important;
}


.tools {
    text-align: center;
    border-radius: 10px;
    margin: 10px 0 10px 0
}

.tools a {
    background: #fff;
    color: #4c4848;
    cursor: pointer;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    display: inline-flex;
    height: 2.5em;
    justify-content: flex-start;
    padding: 10px 10px;
    position: relative;
    vertical-align: top;
    text-decoration: none
}

.catbar {
    width: 100%;
    display: flex;
    background-color: #e3e8eb;
    border-radius: 5px;
}

.catbar a {
    width: 50%;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    text-decoration: none;
}

.catbar a.active {
    border: 3px solid rgb(0, 0, 0);
}

/* Advanced Footer (Global) */
.site-footer {
    background: #2c3e50;
    color: #ffffff;
    margin-top: 50px;
}

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.site-footer .footer-section h3,
.site-footer .footer-section h4 {
    color: #1832d9;
    margin-bottom: 15px;
    font-size: 18px;
}

.site-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-section ul li {
    margin-bottom: 8px;
}

.site-footer .footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-section ul li a:hover {
    color: #1832d9;
}

.site-footer .footer-bottom {
    background: #1a252f;
    padding: 20px 0;
    border-top: 1px solid #34495e;
}

.site-footer .footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-footer .footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-footer .footer-social a {
    color: #1832d9;
    text-decoration: none;
}

.site-footer .footer-social a:hover {
    color: #0f24a8;
}

@media (max-width: 768px) {
    .site-footer .footer-bottom .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}