﻿.app-bar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.app-bar {
    position: absolute;
    top: 0;
    left: 0;
}

.input-wrapper {
    background-color: #252525;
    padding-left: 15px;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
}

#input-wrapper-input {
    background-color: transparent;
    border: none;
    width: 100%;
    padding: 0px;
}

#input-wrapper-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

/*Organizer Profile Header & About CSS: TO BE MOVED*/

/*
    .organizerProfileWrapper > div:nth-of-type(1) > div:nth-of-type(2) > img {
        width: 280px;
        height: 280px;
        border-radius: 140px;
    }

    .organizerProfileWrapper > div:nth-of-type(1) > div:nth-of-type(4) > div {
        background-color: white;
        border-radius: 10px;
        height: fit-content;
        width: fit-content;
    }

    .organizerProfileWrapper > div:nth-of-type(1) > div:nth-of-type(4) > div:nth-of-type(1) {
        border-radius: 25px;
        padding: 2px;
    }

    .organizerProfileWrapper > div:nth-of-type(1) > div:nth-of-type(4) > div:nth-of-type(2) {
        padding: 5px 10px 5px 10px;
    }

#organizerProfileAboutWrapper > div:nth-of-type(1) {
    width: 80%;
}

#organizerProfileAboutWrapper > div:nth-of-type(1) > p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    width: 80%;
    color: #BDBDBD;
}

.text-black {
    color: #000000;
}
*/
/*Event Component CSS: TO BE MOVED*/

.horizontal-container {
    display: flex;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.eventComponentWrapper > div:nth-of-type(2), .componentWrapper > div:nth-of-type(2), .circularComponentWrapper > div:nth-of-type(2) {
    display: flex;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

    .eventComponentWrapper > div:nth-of-type(2)::-webkit-scrollbar, .componentWrapper > div:nth-of-type(2)::-webkit-scrollbar, .circularComponentWrapper > div:nth-of-type(2)::-webkit-scrollbar {
        display: none;  /*Safari and Chrome */
    }

    .eventComponentWrapper > div:nth-of-type(2) > div {
        width: 420px;
        min-width: 420px;
        max-width: 420px;
        height: fit-content;
        padding: 15px;
        background-color: #252525;
    }

        .eventComponentWrapper > div:nth-of-type(2) > div > img {
            width: 175px;
            height: 175px;
        }

        .eventComponentWrapper > div:nth-of-type(2) > div > div {
            height: 175px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

.circularCardWrapper {
    width: 190px;
    height: fit-content;
}

    .circularCardWrapper > div:nth-of-type(2) {
        width: 190px;
        height: fit-content;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .circularCardWrapper > div:nth-of-type(1) {
        width: fit-content;
        height: fit-content;
        padding: 10px 10px 4px 10px;
        border-radius: 95px;
        background-color: #252525;
    }

    .circularCardWrapper > div:nth-of-type(1) > img {
        width: 170px;
        min-width: 170px;
        max-width: 170px;
        height: 170px;
        border-radius: 85px;
    }

.about-paragraph {
    overflow: visible;
    text-overflow: unset;
    display: block;
    color: #BDBDBD;
}

