@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;


}

li, a, button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ecf0f1;
    text-decoration: none;

}

header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 2px 2%;
    background-color: #237fff;
    
}

.cec-logo {
    cursor: pointer;
    width: 200px;
    height: 50px;
}

.nav-container {
    display: flex;
    justify-content: space-between; 
    padding: 50px 5%;
}

.global-nav-links {
    display: flex;
    justify-content: flex-start; 
    list-style: none;
}

.global-nav-links li {
    display: inline-block;
    padding: 0px 20px;

}

.global-nav-links li a {
    transition: all 0.3s ease 0s;
}

.global-nav-links li a:hover{
    color: #0088a9
}

.search{
    --padding: 5px;

    width: max-content;
    display: flex;
    align-items: center;
    padding: var(--padding);
    border-radius:28px;
    background:#f6f6f6;

}

.search-input{
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    margin-left: 14px;
    padding: var(--padding);
    outline: none;
    border: none;
    background: transparent;
    flex: 1;



}


button {
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;

}

button:hover {
        background-color: rgba(0,136,169,0.8);
}

        body {
            margin: 0;

        }

        .container {
            display: flex;
            flex-direction: row;
            min-height: 100vh;
            background-color: #00ffff;
        }

        .main {
            flex: 1;
            padding: 20px;
            
            background-color: #660054;
        }

        .new-section-button {
            display: flex;
            flex-direction: row;
            align-self: center;
            justify-content: flex-end;
            background-color:#ffc813
        }

        .sidebar {
            flex: 1;
            max-width: 300px;
            background-color: #cacaca;
            padding: 20px;
            border-left: 1px solid #ccc;
        }


        .header {
            margin-top: 0;
            
        }

        .sections {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            background-color:#ffedb1;
            
        }

        .loginscreens {
      
            flex-wrap: wrap;
            gap: 20px;
            background-color:#ffedb1;
       }  

        .section-card {
            flex: 1 1 calc(33.33% - 20px); 
            border: 5px solid #1a009e;
            padding: 10px;
            border-radius: 6px;
            background-color: #fefefe;
            min-width: 50px;
            min-height: 300px;
        }

        .section-card h3 {
            margin-top: 0;
        }

        .section-card ul {
            padding-left: 20px;
        }

        .calendar {
          //  background-color: #e2e2e2;
          //  height: 200px;
           // text-align: center;
           // line-height: 200px;
           // border-radius: 8px;
           // margin-bottom: 20px;
        }

        .quick-links ul {
            list-style-type: none;
            padding-left: 0;
        }

        .quick-links li {
            margin-bottom: 10px;
        }

        .quick-links a {
            text-decoration: none;
            color: #007bff;
        }

        .quick-links a:hover {
            text-decoration: underline;
        }

        @media (max-width: 900px) {
            .container {
                flex-direction: column;
            }

            .sections {
                flex-direction: column;
            }

            .section-card {
                width: 100%;
            }

            .sidebar {
                border-left: none;
                border-top: 1px solid #ccc;
                max-width: none;
                
                
            }
        }