.cache-link {
    font-weight: bold;
}

.author-link {
    font-weight: bold;
    color: #666600;
}

.author-link:visited {
    font-weight: bold;
    color: #666600;
}

.author-link:active {
    color: #663333;
}

.cache-location {
    font-style: italic;
}

.new-cache {
    color: #463D2E;
    padding: 3px;
}

.cache-type-img {
    vertical-align: middle;
}

.news-container, .events-container {
    width: 100%;
    padding: 15px;
}

.news-item {
    margin-bottom: 10px;
}

.news-date {
    color: #990000;
}

.news-content {
    text-align: justify;
    margin: 10px 0;
}

.news-link {
    text-align: right;
    padding-right: 15px;
}

.news-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    font-size: 20px;
    margin: 2px 5px 2px 2px;
    vertical-align: middle;
    object-fit: contain;
}

.news-separator {
    height: 1px;
    width: 100%;
    background: #cfcfcf;
    margin: 10px 0;
}

.index-block-header {
    text-align: center;
    margin: 0;
    margin-bottom: 5px;
}

.floating-toggle-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 60px;
    line-height: 60px;
    width: 60px;
    font-size: 2em;
    font-weight: bold;
    border-radius: 50%;
    background-color: var(--geo-green);
    color: white;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
}

.floating-toggle-button:hover {
    background-color: var(--geo-green-hover);
}

/* Singnup buttons */
.signup-container {
    text-align: center;
    font-size: 20px;
    padding: 20px;
}

.signup-buttons {
    margin-top: 15px;
}


/* Responsive */
@media (max-width: 768px) {
    .signup-container {
        font-size: 18px;
        padding: 15px;
    }

    .signup-buttons {
        display: flex;
        flex-direction: column;
    }
}

.options-list {
    display: none;
    position: fixed;
    bottom: 70px; /* Adjust as needed */
    right: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 9999;
    padding: 10px;
    width: 190px;
}

.option {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}


.option span.toggled {
    color: green; /* Change color to indicate toggled state */
}

.option span:not(.toggled) {
    color: red; /* Red cross for non-toggled state */
}

.option:hover {
    background-color: #f1f1f1;
}

/* Define the fade-in effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px); /* You can adjust this to give a slight slide-up effect */
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply the animation to newly visible elements */
.highlight {
    animation: fadeIn 0.7s ease-out; /* Adjust the time and easing as needed */
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}


.feed-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.feed-elem {
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
}

.feed-elem-special {
    background: honeydew;
}

.feed-elem:last-child {
    border-bottom: none;
}

.feed-header {
    margin-bottom: 5px;

    display: flex;
    align-items: center;
}

.feed-icon {
    margin-right: 10px;
    width: 25px;
    height: 25px;
}

.feed-title {
    font-weight: bold;
    text-decoration: none;
}

.feed-location {
    font-style: italic;
}

.feed-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.feed-meta-secondary {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.feed-body {
    color: #333;
}

.feed-body img {
    vertical-align: middle;
    margin-right: 10px;
}

.feed-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.collapse-toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    /*margin-left: 8px;*/
    margin-left: auto;
    font-size: var(--text-sm);
    color: var(--geo-green);
}

.like-container {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.collapse-toggle-button:hover {
    color: #000;
}


@media screen and (max-width: 768px) {
    #news-content, #events-content {
        display: none;
    }

    .feed-header-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


.index-image-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

/* Image stays on the right for larger screens */
.index-image {
    width: 200px;
    height: auto;
    border-radius: 5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .index-image-block {
        flex-direction: column;
        text-align: center;
    }

    .index-image {
        width: 100%;
        max-width: 250px;
        margin-top: 10px;
    }
}


[v-cloak] {
    display: none
}
