.dashboard {
    width: 100vw;
    height: 100vh;
    background-color: white;
}

.BCAIcon {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
}

.dashboard footer {
    color: white;
    background-color: #2C2B2B;
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    z-index: 999;
}

.dashboard footer a {
    color: white;
}

.dashboard footer .links {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    text-transform: uppercase;
    font-size: 18px;
}

.dashboard footer .copyright {
    width: 98%;
    border-top: 1px solid white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.dashboard footer .copyright .socials {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.dashboard footer .upper {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.dashboard footer .upper .links, .dashboard footer .upper .contact {
    width: 300px;
}

.dashContainer {
    display: flex;
    flex-direction: column;
}

.tabs {
    position: relative;
    height: auto;
    min-height: 90vh;
}

.Nav {
    position: relative;
    width: 100%;
    height: 75px;
    background-color: white;
    border-bottom: 1px solid #D5D5D5;
    z-index: 99;
    align-items: center;
    display: flex;
}

.sideBtns {
    width: 100%;
    height: 20%;
    text-align: left;
    display: flex;
    column-gap: 50px;
    flex-direction: row;
    padding: 20px;
    transition: transform 0.3s ease;
    align-items: center;
}

.sideBtns h2 {
    font-size: 24px;
    color: black;
    font-weight: 600;
    margin: 0;
}

.sideBtns button, .sideBtns .navLink {
    height: 60px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    color: black;
    cursor: pointer;
    text-align: left;
    display: grid;
    /* grid-template-columns: 35px auto; */
    align-items: center;
    padding-block: 10px;
}

.logoutBtn {
    grid-template-columns: 35px auto;
    position: relative;
    right: 45px;
    position: absolute;
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.divider {
    border-bottom: 1px solid #7C7C7C;
    margin-block: 40px;
    width: 80%;
}

.sideBtns button.active {
    font-weight: bold;
    background-color: #F5F5F5;
}

.hamburger {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    z-index: 10000;
    font-size: 24px;
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    .Nav {
        position: relative;
        top: 0;
        left: 0;
        height: 80px;
        width: 100vw;
    }

    .sideBtns {
        background-color: #F5F5F5;
        height: 100vh;
        padding-block: 0;
        transform: translateX(-100%);
        display: flex;
        flex-direction: column;
        top: 0;
        position: absolute;
        justify-content: start;
    }

    .sideBtns.hidden {
        transform: translateX(-100%);
    }

    .sideBtns.visible {
        transform: translateX(0);
    }

    .logoutBtn {
        position: relative;
    }

    .sideBtns h2 {
        margin-top: 20px;
    }

    .hamburger {
        display: block;
    }

    .createItemBtn {
        visibility: hidden;
    }

    .dashboard footer .upper {
        flex-direction: column;
    }
}

.chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #D6482C;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.chatbot-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    height: 400px;
}

.chatbot-popup button[type="submit"] {
    font-size: 14px;
    padding: 10px 20px;
    margin-right: 10px;
}

.chatbot-header {
    background: #D6482C;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: 300px;
}

.chatbot-input {
    display: flex;
    border-top: 1px solid #ccc;
}

.chatbot-input input {
    flex: 1;
    padding: 8px;
    border: none;
    outline: none;
}

.chatbot-input button {
    padding: 8px 12px;
    border: none;
    background: #D6482C;
    color: white;
    cursor: pointer;
}

.message {
    margin-bottom: 10px;
}

.message.user {
    text-align: right;
}

.message.assistant {
    text-align: left;
}
