/**
 * Theme Name:     Kadence Child
 * Author:         Kadence WP
 * Template:       kadence
 * Text Domain:	   kadence-child
 * Description:    Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
 */
.um-custom-profile-page {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 30px;
    font-family: "Inter", sans-serif;
}

.um-profile-header h1 {
    margin-bottom: 5px;
}

.um-profile-info ul {
    list-style: none;
    padding: 0;
}

.um-profile-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.um-profile-actions {
    margin-top: 25px;
}

.um-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: 0.2s;
}

.um-btn:hover {
    background-color: #1a5b8f;
}


/** dashboard client */

body {
    padding: 0;
    margin: 0;
}

#dashboard-navbar {
    margin: 0;
    width: 100vw;
    height: 100px;
    background-color: hsla(69, 69%, 38%, 0.2);;
    box-shadow: 0px 3px 5px gray;
}

#dashboard-navbar section {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

.dashboard-user-profile {
    width: 10%;
    display: flex;
    justify-content: space-between;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.dashboard-content {
    padding: 0;
    margin: 0; 
}


/* dashboard sidebar */



#dashboard-sidebar {
    width: 18%;
    height: 100vh;
    background-color: #2c2e25;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: -1;
    
}


#dashboard-sidebar h3 {
    font-size: 30px;
    color: lightslategray;
    padding: 5px;
    
}

#dashboard-sidebar section {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;

}

.dashboard-menu-items {
    height: 50vh;
}

.dashboard-menu-items ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;

}

.dashboard-menu-items ul > li {
    margin: 3px 0px;
    
}

.dashboard-menu-items ul > li .link:hover {
    background-color: c;
}



.dashboard-menu-items ul li.active > .link{
    background-color: #8FA31E;
    color: black;
    
}

.link {
    display: block;
    text-decoration: none;
    font-size: 20;
    padding: 10px;
    cursor: pointer;
    
}




#dashboard-sidebar section footer {
    border-top: 10px solid #8FA31E;;
    padding: 20px 0px 0px;

}

#dashboard-sidebar section footer section div {
    display: flex;
    gap: 10px;
    padding: 0px 10px;
    align-items: center;
}


.dashboard-main-content {
    position: relative;
    padding-left: 20px;
    width: calc(82% - 20px);
    margin-left: 18%;
}

.dashboard-main-content footer {
    position: fixed;
    width: calc(100% - 15px);
    bottom: 0;
    left: 18%;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    color: #8FA31E;
}

a {
    color: lightslategray;
}