

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}


.section {
    box-sizing: border-box;
    
}

.search-container, .user-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    padding: 20px;
}

.user-container {
    background-color: #333;
}

.filter-label {
    font-weight: bold;
    font-size: 15px;
    color: #fff;
    text-align: center;
}


.welcome-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px 20px 0px 20px;
    background-color: #fff;
}


.btn-group-filter {
    display: block;
    gap: 5px;
}

/* Button Styles */
.filter-btn ,.user-homepage-btn{
    font-size: 14px;
    padding: 6px 12px;
    border: 1px solid #42445A;
    border-radius: 5px;
    background-color: #ffffff;
    color: black;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.filter-btn:hover ,.user-homepage-btn:hover {
    background-color: #42445A;
    color: #ffffff;
}

.filter-btn.active ,.user-homepage-btn.active {
    background-color: #42445A;
    color: #ffffff;
    font-weight: bold;
}

.user-homepage-actions {
    display: flex;
    align-items: center;      /* vertically centers label + buttons */
    justify-content: flex-start; /* push content to the left */
    gap: 12px;
}

.user-homepage-actions .filter-btn {
    min-width: 100px;
}


.console-link {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content; /* Ensures the width fits the content */
}



.link-description {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}


.disclaimer-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    box-sizing: border-box;
    flex: 1;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 50px;
    padding-top: 0px;
}


.centered-title {
    text-align: center;
    font-size: 4rem;
    color: #333;
    margin-bottom: 20px;
}
.sub-title{
    text-align: left;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}


.about-content p{
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem); /* Responsive font size */
    margin-bottom: 1.5rem; /* Modern spacing */
    color: #42445A; /* Slightly richer color for better contrast */
    text-align: center;
    font-weight: 700; /* Bold font for emphasis */
    line-height: 1.2; /* Better readability */
    letter-spacing: 0.05em; /* Subtle spacing for elegance */
    padding-top: 0px;
}

.asset-highlight-homepage {
    width: 600px !important; 
    height: 300px;
}

.console-tables {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .asset-highlight-homepage {
        width: 400px !important; /* Full width on smaller screens */
        height: auto; /* Auto height to maintain aspect ratio */
        display: block !important;
    }
    
    #filters-section {
        flex-direction: column; /* Stack filters vertically */
        align-items: flex-start; /* Align items to the left */
        gap: 10px; /* Add spacing between filter groups */
    }

    .filter-group-home , .user-group-home{
        width: 100%; /* Optional: ensure full-width groups */
    }

    .btn-group-filter-filter {
        flex-wrap: wrap;
    }

    .filter-btn {
        flex: 1;
        text-align: center;
    }
   
    .section {
        min-height: 60vh; 
    }

    .about-section, .home-actions, .about-content, .home-content p, .contact-section, .disclaimer-section{
        padding-left: 15px;
        padding-right: 15px;
    }
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    
}





.filter-group-home, .user-group-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: #7d7a7a;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
}
.user-group-home {
    background: black;
}


/* Responsive Design */
@media (max-width: 410px) {
    .asset-highlight-homepage {
        width: 100% !important; /* Full width on smaller screens */
        height: auto; /* Auto height to maintain aspect ratio */
    }

    .filter-group-home, .user-group-home {
        display: block;       
    }
    .section-title {
        font-size: 1.5rem;
    }
    
    .console-link {
        font-size: 1.5rem;
    }
    .user-hubs-containter {
       display: grid;
    }
}







