:root {
    --color-primary: #4a99d2;
    --color-secondary: #90ae4c;
}

html {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
}

.ycc-user-account {
    display: flex;
    height: 100vh;
    overflow-y: hidden;
}

.ycc-user-account .side-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--color-secondary);
    width: 320px;
}

.ycc-user-account .side-bar .sb-logo {
    background-color: #fff;
}

.ycc-user-account .side-bar .sb-logo img {
    height: 100px;
    width: 100%;
    object-fit: contain;
}

.ycc-user-account .side-bar nav {
    width: 100%;
}

.ycc-user-account .side-bar nav ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ycc-user-account .side-bar nav ul li a {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    color: #fff;
    line-height: 1;
    padding: 15px 20px;
}

.ycc-user-account .side-bar nav ul li.is-active a,
.ycc-user-account .side-bar nav ul li a:hover {
    background-color: var(--color-primary)
}

.ycc-user-account .main-content {
    background-color: #f4f4f4;
    width: calc(100% - 320px);
    height: 100%;
    padding: 50px;
    overflow-y: auto;
}

.ycc-user-account .main-content .ycc-container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

.ycc-user-account .main-content .ycc-container-box {
    background-color: #fff;
    min-height: 700px;
    padding: 50px;
    border-radius: 20px;
}

.ycc-user-account .prescription-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}