/* General */
body {
    font-family: Gabarito;
    background-color: #F2F1EE;
    margin-left: 270px;
    margin-right: 20px;
}

h2, h3 {
    font-weight: 500;
}

a, a:visited {
    color: #3F8CD1;
    text-decoration: none;
}

footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    color: #757575;
    font-size: 16px;
    border-top: 1px solid #757575;
}

/* Navbar */
ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
    width: 250px;
    background-color: #cccccc;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

li {
    display: block;
}

#logo {
    width: 210px;
    margin-top: 0;
    display: block;
    padding: 20px;
}

a.navLink, a.navLink:visited {
    color: #606683;
    font-weight: 600;
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 20px;  
    text-decoration: none;
    box-sizing: border-box
}

a.navLink:hover, a.navLink:focus {
    background-color: #a7bbd8;
}

a.navLink.active {
    background-color: #a7bbd8;
}

#userPanel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    color: #444;
}

#orgDisplay {
    font-weight: bold; 
    color: #444;
}

.icons {
    display: flex;
    gap: 12px;
    cursor: pointer;
    font-size: 24px;
}

.icons i:hover {
    color: #3F8CD1;
}

/* Session Display */
#title {
    margin-top: 35px;
}

form {
    display: none;
    margin-top: 20px;
}

.session {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0 20px 0;
}

.session h3 {
    font-size: 30px;
    margin: 0 0 10px 0;
}

.session-open, .session-closed {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
}

.session-closed {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    background-color: #d3d3d3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
}

.session-buttons {
    display: flex;
    gap: 5px;
    margin-top: auto;
}

.session-buttons button {
    flex: 1 1 33%;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #888;
    border-radius: 4px;
    background-color: #e0e0e0;
    transition: background-color 0.1s ease;
}

.delete:hover{
    background-color: #e07e7e;
}

.normal:hover {
    background-color: #d0d0d0;
}