:root {
    --primary-blue: #074da3;
    --accent-blue: #1A4DA3;
    --black-text: #0c2339;
    --body-text: #4e5c79;
    --blue-text: #053864;
    --dark-green: #2E9868;
    --light-green-background: #E6F4F0;
    --grey-blue: #9DB0C3;
}

body {
    background: #ECF3FA;
}

.content {
    padding-top: 100px;
    width: 90%;
    margin: 0 auto;
}

.dashboard-body {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

@media (max-width: 768px) {
    .dashboard-body{
        display:flex;
        flex-direction: column;
        gap:30px;
    }
}

.dashboard-sidebar {
    display:inline-block;
    flex: 1;
   
}

.dashboard-sidebar ul{
    background: #fff;
    border-radius: 8px;
    padding: 20px 16px;
    margin-bottom: 20px;
    min-width:300px;
}

.dashboard-sidebar ul li {
    list-style: none;
    padding: 10px 15px;    
}


.dashboard-sidebar ul li:not(:last-child) {
    border-bottom: 1px solid #edf0f7;
}

.dashboard-sidebar ul li a{
    padding: 3px 0;
    color: #1b4167;
    font-size: 14px;
    display: inline-block;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}

.dashboard-sidebar ul li a i{
    margin-right:10px;
}


.dashboard-content {
    flex: 3;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #fff;
    border-radius: 8px;
    padding: 20px 20px;
}

.dashboard-content h3{
    font-size:22px;
    padding:20px 0px 0px 0px;
}

.dashboard-content .form-field{
    margin:20px 0px;
}

.dashboard-content .form-field{
    display:flex;
    flex-direction: column;
    gap:4px;
}


.dashboard-content label{
    font-size: 14px;
    font-weight: 500;
    color: #053864;
}
.dashboard-content input[type=text]{
    background: #f8fbfd;
    border: 1px solid #eff3f6;
    border-radius: 3px;
    color: #646e77;
    height: 56px;
    font-size: 16px;
    box-shadow: none;
    padding: .5rem .75rem;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    outline:none;
}

.checkbox-wrapper{
    display:flex;
    flex-wrap: wrap;
    gap:20px;
    background: #f8fbfd;
    border: 1px solid #eff3f6;
    border-radius: 3px;
    color: #646e77;
    font-size: 16px;
    box-shadow: none;
    padding:20px 20px;
}


.checkbox-wrapper label{
    display:flex;
    gap:4px;
}

.form-field select{
    background: #f8fbfd;
    border: 1px solid #eff3f6;
    border-radius: 3px;
    color: #646e77;
    font-size: 16px;
    box-shadow: none;
    padding:20px 20px;
}

.form-field textarea{
    background: #f8fbfd;
    border: 1px solid #eff3f6;
    outline:none;
    border-radius: 3px;
    color: #646e77;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    box-shadow: none;
    padding:20px 20px;
    height: 200px;
    width:100%;

}

.form-field input[type=submit]{
    display:inline;
    height: 56px;
    padding: 10px 20px;
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    max-width: 300px;

}


.mySchools {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mySchools .school-item {
    display: flex;
    gap: 20px;
    padding: 12px 10px;
    background: #fff;
    border-radius: 8px;
    border:1px solid #EAF6F4;
}


.mySchools .school-item .thumbnail {
    width: 120px;
    height: 100px;
    border-radius: 8px;
    background: #ECF3FA;
    position: relative;
}

.mySchools .school-item img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    background: #EAF6F4;
}

.curriculum-wrapper {
    position: absolute;
    top: 8px;
    left: 12px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .curriculum-wrapper {
        left:4px;
    }
}

.curriculum {
    background: #2E9868;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: #fff;
    display: flex;
    gap: 6px;
}

@media (max-width: 768px) {
    .curriculum {
        font-size: 9px;
        padding:2px 4px;
    }
}

.curriculum img {
    max-width: 16px;
    max-height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mySchools .school-item .school-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--black-text);
}

.mySchools .school-item .school-region {
    font-size: 14px;
    color: var(--body-text);
}


.mySchools .school-item .level-item {
    display: inline-block;
    background: #EAF6F4;
    color: #44B499;
    margin: 8px 0px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.mySchools .school-item .actions{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:20px;
}

.mySchools .school-item .school-details .actions a{
    
}