/* Moved styles from index.html */
* {
    color: inherit;
}
html {
    color: #000;
}
.uk-label {
    color: black;
    text-transform: none;
    background-color: transparent;
    border: 1px solid black;
    padding: 0px 3px;
}
/* Further increase the size of social icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px; /* Increased size */
    height: 140px; /* Increased size */
    margin: 0 8px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 60px; /* Increased font size */
    line-height: 140px; /* Adjusted for vertical alignment */
    text-decoration: none;
    transition: transform .2s, background .2s;
}
.social-icon i {
    color: #fff !important;
    font-size: 60px; /* Increased font size */
    line-height: 140px; /* Adjusted for vertical alignment */
}
.social-icon:hover {
    transform: scale(1.1);
    background: #333;
}
.news {
    border: 1px solid #e5e5e5;
    width: 98%;
    padding: 10px;
    background: #fff;
    border-radius: 4mm;
    height: auto;
    max-height: none;
    overflow: visible;
}
.news li.read-more {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news li.read-more::before {
    content: none !important;
}
.news summary {
    display: inline-block;
    cursor: pointer;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    color: #004fa3;
    text-decoration: underline;
    outline: none;
}
.news summary::-webkit-details-marker {
    display: none;
}
.news summary::marker {
    content: "";
}
.news li.read-more details ul {
    margin: 0;
    padding-left: 1.4em;
}
.uk-text-bold {
    font-weight: 600;
}
.uk-h2, h2 {
    font-size: 1.5rem;
}
.uk-text-lead {
    font-size: 1.0rem;
    line-height: 1.5;
    color: #333;
}
.uk-text-lead {
    color: #800000;
}

/* Added background color for the top header */
.uk-navbar-container {
    background-color: #BF5701 !important; /* Ensure the header retains its color */
}

/* Ensure social icons are visible and styled for mobile */
@media (max-width: 768px) {
    .social-icon {
        width: 60px; /* Slightly smaller for mobile */
        height: 60px;
        font-size: 28px;
        line-height: 60px;
    }
    .social-icon i {
        font-size: 28px;
        line-height: 60px;
    }
}