﻿.hover-underline:hover {
    text-decoration: underline; /* Add underline on hover */
    color: #007BFF; /* Change color on hover */
}

.text-limit {
    line-height: 1.2; /* Set the line height to control the number of lines */
    max-height: 2.6em; /* (line-height * number of lines) - This will limit the text to 3 lines */
    overflow: hidden; /* Hide any content that exceeds the specified height */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
}

.hover-underline:hover {
    text-decoration: underline; /* Add underline on hover */
    color: #007BFF; /* Change color on hover */
}

.text-limit {
    line-height: 1.2; /* Set the line height to control the number of lines */
    max-height: 2.6em; /* (line-height * number of lines) - This will limit the text to 3 lines */
    overflow: hidden; /* Hide any content that exceeds the specified height */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
}

/* Loading overlay styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .loading-overlay.show {
        display: flex;
    }

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007BFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
