﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif Arial, sans-serif;
    /*background: rgb(169,174,177);
    background: linear-gradient(180deg, rgba(169,174,177,1) 0vh, rgba(191,195,198,1) 15vh, rgba(191,195,198,1) 100vh);*/
    background: #ddd;
}

input {
    border-radius: 5px;
    border: 1px solid #555;
}

.header {
    padding: 20px;
    position: relative;
    padding-top: 35px;
}

.sticky-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    color: #032e3e;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    z-index: 1000;
    opacity: 1; /* Make sticky header always visible */
}

    .sticky-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #007bff; /* Your base color */
        opacity: 0; /* Desired opacity */
        z-index: -1;
    }

    .sticky-header.withbg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #a9aeb1; /* Your base color */
        opacity: 1; /* Desired opacity */
        z-index: -1;
        transition: opacity 0.3s;
    }


    .sticky-header .title {
        opacity: 0; /* Initially hide the title in the sticky header */
        transition: opacity 0.5s;
    }

    .sticky-header.visible .title {
        opacity: 1; /* Show title when sticky header becomes visible */
    }

.content {
    padding: 15px;
}

input[type="search"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

.search-icon {
    font-size: 24px; /* Adjust size as needed */
    margin-right: 20px;
}

.title {
    text-align: center;
    width: 100%;
}

#page-title {
    color: #032e3e;
}