.dashboard-wrapper{
    display: grid;
    grid-template-columns: 80px 1fr;
}

.white{
    color: white;
}

/* .profile-info{
    border-radius: 20px;
    background: #f2f2f2;
}

.profile-info:hover{
    background-color: #ddd;
}

.profile-info:hover .profile-menu-options{
    display: block;
}

.profile-info > span{
    vertical-align: middle;
    font-size: 0.7em;
    font-weight: 400;
    display: inline-block;
}

.profile-info > span:nth-child(2){
    padding: 0px 3px;
    font-size: 0.5em;
    font-weight: 500;
}

.profile-menu-options{
    position: absolute;
    right: 0px;
    margin: 8px 20px;
    background-color: white;
    border-radius: 10px;
    text-align: left;
    min-width: 100px;
    z-index: 1;
    display: none;
}

.profile-menu-options > *{
    display: block;
    padding: 15px 30px;
    border-bottom: 1px solid #f2f2f2;
    text-align: left;
}

.profile-menu-options #profile-username{
    font-size: 0.55em;
    font-weight: 500;
}

.profile-menu-options > *:hover{
    background: #ddd;
    
}

.profile-menu-options > *:hover *{
    color: #3659e3;
}

.profile-menu-options > *:last-child{
    border-bottom: none;
    border-radius: 0px 0px 10px 10px;
}

.profile-menu-options > * > *{
    display: inline-block;
    font-size: 0.6em;
    font-weight: 400;
}

.profile-menu-options > * > *:first-child{
    text-align: center;
    width: 25px;
} */

.dashboard-wrapper .left-main-menu{
    background-color: rgb(236, 236, 236);
    background-color: white;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    min-width: fit-content;
    overflow-y: auto;
    position: sticky;
    top: 0;
    right: 0;
    bottom: 0;
}


.dashboard-wrapper .left-main-menu{
    color: white;
    display: grid;
}


.dashboard-wrapper .left-main-menu .logo{
    text-align: center;
    max-height: 15%;
    height: 15%;
    min-height: 60px;
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
}

.dashboard-wrapper .left-main-menu .logo > *{
    text-align: center;
    padding: 10px 0px;
    /* border-bottom: 1px solid #626161b5; */
    height: fit-content;
}

.dashboard-wrapper .left-main-menu .menu-list{
    color: white;
    height: 80%;
    max-height: 80%;
    min-height: fit-content;
    display: block;
}

.dashboard-wrapper .left-main-menu .menu-list > *{
    display: block;
    color: white;
    padding: 20px 15px;
    width: 100%;
    font-size: 1.5em;
    font-weight: 800;
    text-transform: capitalize;
    text-align: center;
    
}

.dashboard-wrapper .left-main-menu .menu-list > *:hover, .menu-item-selected{
    color: white;
    background: rgb(47, 47, 47);
    background-color: #f2f2f2;
    border-radius: 30px 0px 0px 30px;
}

.menu-item-selected *{
    color:#3659e3;
}


.dashboard-wrapper .left-main-menu .menu-foot{
    max-height: 5%;
    height: 5%;
    min-height: 20px;
    justify-content: center;
    align-items: end;
    padding: 10px;
    font-size: 0.7em;
    text-align: center;
}

.main-content{
    background-color: #f2f2f2;
    overflow: auto;
}

.main-content .top-content {
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    padding: 9px 20px;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.create-event-button-main{
    border-radius: 50rem;
    font-size: 110%;
    background-color: transparent;
    /* background-color: #f2f2f2; */
    color: rgb(47, 47, 47);
    border: 1px solid #D7D5E9;
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
}

.event-list{
    margin-top: 20px;
    margin-left: 30px;
}
.main-content .top-content > * > span{
    display: inline-block;
    padding: 8px 15px;
    font-size: 1.5em;
    cursor: pointer;
}

.main-content .top-content > * > span:hover{
    color: #F25252;
}

button.create-event-button-main:hover{
    background-color: #645f8823;
    /* color: white; */
}

.content-area{
    /* background-color: aliceblue; */
    min-height: 80%;
    display: grid;
    grid-template-columns: 3fr minmax(300px, 1fr);
}

.content-area .greeting{
    font-size: 2em;
    font-weight: 900;
    margin: 30px;
}

.content-area .tasks{
    margin: 0px 30px;
}

.content-area .tasks .task, .full .task{
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
}

.content-area .tasks .task > *, .full .task > *{
    margin: 10px 0px;
}

.content-area .tasks .task .icon > *, .full .task .icon > *{
    font-size: 1.5em;
    padding: 15px;
    background-color: #f2f2f2;
    border-radius: 50%;
    color: #3659e3;
    margin-bottom: 10px;
}

.content-area .tasks .task .title, .full .task .title{
    font-weight: 500;
    font-size: 1.3em;
    color: black;
}

.content-area .tasks .task .description, .full .task .description{
    font-size: 0.8em;
    line-height: 1.5;
}

.content-area .tasks .task button, .full .task button{
    background-color: transparent;
    padding: 10px 30px;
    border: 2px solid #ddd;
    border-radius: 6px;
    color:black;
}

.content-area .tasks .task button:hover, .full .task button:hover{
    background-color: white;
    cursor: pointer;
}

.options{
    margin: 0px 30px;
}

.options > div{
    margin: 0px 10px;
    padding: 30px 10px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: 0.9em;
}

.options > div:hover{
    cursor: pointer;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-weight: 500;
    color: #645F88;
}

.content-area .full{
    background-color: #f9f9f9;
    /* border-radius: 6px; */
    /* padding: 20px; */
    margin: 20px 30px;
    min-height: 250px;
}

.search-area{
    background-color: white;
}

.content-area .right-side-content{
    /* padding: 20px; */
    margin: 40px 30px;
}

.content-area .right-side-content .side-section-container{
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    padding: 30px 20px;
    background-color: #f9f9f9;
    position: sticky;
    top: 20px;
}

.content-area .right-side-content .side-section-container .details > div{
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 10px;
    margin: 10px 0px;
}

.content-area .right-side-content .side-section-container .details > div > *{
    font-size: 0.85em;
    font-weight: 400;
}

.content-area .right-side-content .side-section-container .details > div > *:first-child{
    color: black;
}

.content-area .right-side-content .side-section-container .title{
    font-size: 1.2em;
    font-weight: 500;
    color: black;
}

.center-content .sub-menu{
    margin: 0px 10px;
    overflow: auto;
}

.center-content .sub-menu > *{
    margin: 0px 20px;
    padding: 15px 0px;
    display: inline-block;
    border-bottom: 2px solid transparent;
    font-size: 1em;
    font-weight: 400;
}

.center-content .sub-menu > *:hover{
    cursor: pointer;
    color: black;
    border-bottom: 2px solid #ccc;
}

.sub-menu > *.menu-selected, .sub-menu > *.menu-selected:hover{
    color: #3659e3;
    border-bottom: 2px solid #3659e3;
}

.operations-area{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    margin: 30px;
}

.operations-area .search-form{
    display: block;
    padding: 10px 2%;
    background-color: white;
    border: 1px solid #ddd;
    /* width: max-content; */
}

.operations-area .search-form:hover{
    border: 1px solid #3659e3;
}

.operations-area .search-form > span{
    cursor: pointer;
}

.operations-area .search-form > *{
    white-space: nowrap;
    display: inline-block;
}

.operations-area .search-form span{
    padding: 10px;
    border-radius: 20px;
}

.operations-area .search-form span:hover{
    background-color: #f9f9f9;
    cursor: pointer;
}

.operations-area .search-form > *:last-child{
    opacity: 0;
}

.operations-area .search-form input{
    border:none;
    box-shadow: none;
    padding: 10px 0px;
    padding-left: 6%;
    /* background-color: #645f8823; */
    width: calc(100% - 68px);
    
}

.operations-area .search-form input::placeholder{
    font-size: 1em;
    font-weight: 400;
}

.operations-area .search-form span{
    font-size: 1em;
}

.liveshow{
    background-color: white;
    margin: 5px 0px;
    border-radius: 5px;
    padding: 0px 10px;
    cursor: pointer;
    width: 100%;
    transition: 1s ease all;
    display: inline-block;
    white-space: nowrap;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    box-shadow: rgba(0, 0, 0, 0.13) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(255, 255, 255, 0) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0) 0px 16px 8px, rgba(19, 19, 19, 0.09) 0px 32px 16px;

}

.create-event-button-selected{
    background-color: #F25252;
    font-size: 0.9em;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    color: white;
}

.create-event-button-selected:hover{
    opacity: 0.9;
    cursor: pointer;
}

.event-list-table{
    /* padding: 10px 0px; */
}

.event-list-table .table-head, .event-list-table .event-list-body .row{
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 40px;
    padding: 20px;
    align-items: center;
}

.event-list-table .table-head{
    background-color: #fffefe;
    
}

.event-list-table .table-head > div{
    /* border: 1px solid red; */
}

.event-list-body .row{
    border-bottom: 1px solid #f2f2f2;
}

.event-list-table .table-head > div{
    font-size: 0.9em;
    font-weight: 500;
}

.row:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.row > *{
    font-size: 0.9em;
    font-weight: 400;
}

.row .event-data > *{
    display: inline-block;
    vertical-align: middle;
    font-size: 0.8em;
}

.row .event-data .short-month{
    font-size: 1em;
    font-weight: 400;
}

.row .event-data .day{
    font-size: 1.5em;
    font-weight: 500;
}

.row .event-data .title{
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 5px;
    color: black;
}

.row .event-data img{
    border: 1px solid red;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #f2f2f2;
    border-radius: 4px;
    margin: 0px 5px;
    object-fit: cover;
}

.row a{
    padding: 10px 16px;
    border-radius: 20px;
}

.row a:hover{
    background-color: #f2f2f2;
}

button.load-more{
    margin: 40px 0px;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #645F88;
    background-color: transparent;
    cursor: pointer;
}

button.load-more > *{
    color: #645F88;
    font-size: 0.9em;
    font-weight: 500;
    padding: 0px 2px;
}

button.load-more:hover{
    opacity: 0.9;
    background-color: #f2f2f2;
}


.liveshow:hover{
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.liveshow > *{
    white-space: nowrap;
    overflow: hidden;
    width: q;
}

.liveshow *{
    display: inline-block;
    vertical-align: middle;
    margin: 5px 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.liveshow .title{
    font-size: 0.7em;
    font-weight: 500;
    text-overflow: ellipsis;
    width: fit-content;
}

.liveshow img{

    border-radius: 20px;
    width: 30px;
    height: 30px;
    object-fit: cover;
    
}

input::placeholder, textarea::placeholder {
    font-size: 14px;
}


@media screen and (max-width: 650px){
    .content-area{
        display: grid;
        overflow: auto;
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 400px){

    .main-content .top-content{
        display: grid;
        grid-template-columns: 1fr;
    }
    .main-content .top-content > div:first-child{
        display: none;
    }

    .operations-area{
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        margin: 30px;
    }

    .operations-area > *{
        text-align: left;
    }
}