﻿* {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 12pt;
    line-height: 16pt;
}

.heading {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 800;
    font-size: 40pt;
    margin-top: 0in;
    margin-bottom: 0in;
}

.sub-heading {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 600;
    font-size: 20pt;
    margin-top: 0in;
    margin-bottom: 0in;
}

input[type="submit"] {
    cursor: pointer;
}
input[type="checkbox"] {
    accent-color:#3F5368
}
.modal-login {
    width: 30rem;
    height: auto;
    background: white;
    padding: 1rem;
    border-radius: 5px;
    padding-bottom: 2rem;
}
.btn-register-click {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    width: 100%
}

.logo {
    display: flex;
    align-items: center;
    width: 30%;
}

    .logo img {
        height: 5rem;
    }

.nav-container {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.link {
    text-decoration: none;
    color: #444;
    font-size: 20pt;
}

.nav-links a:hover {
    color: #ff7b00;
}

.login {
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.login-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 20pt;
    cursor: pointer;
    transition: background 0.3s;
}

    .login-btn:hover {
        background: #e68900;
    }

.orange-triangle {
    width: 0;
    height: 0;
    border-top: 15px solid transparent; /* Top transparent */
    border-bottom: 15px solid transparent; /* Bottom transparent */
    border-left: 30px solid #f7931e;
}

.orange-background {
    background-color: #FCBB76;
}

.light-orange-background {
    background-color: #FEDBB4;
}

.footer {
    padding: 2rem;
    font-size: 15px;
}
.logout-btn {
    background: #3F5368;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}
.container-div {
    width: 90%;
    border: 0px;
    margin-left: auto;
    margin-right: auto;
}

.table-blocks {
    text-align: center;
    color: white;
    background-color: #3F5368;
    font-weight: bold;
    width: 120px;
}
.logo-img {
    width: 10rem;
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
}
