: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;
    display:flex;
    flex-direction: column;
    gap:4px;
}


.dashboard-content label{
    font-size: 14px;
    font-weight: 500;
    color: #053864;
}
.dashboard-content input[type=text], input[type=date]{
    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;

}


.upload-container {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.drag-area {
    border: 2px dashed #ccc;
    padding: 20px;
    cursor: pointer;
    margin-top:20px;
    display:inline-block;
}

.drag-active {
    background-color: #e9e9e9;
}


.photo-preview{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

#photo-preview {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.preview-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.img-container {
    position: relative;
}

.remove-button {
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius:2px;
    border:1px solid;
    font-size:12px;
    background: rgba(0, 0, 0, 0.5);
    padding:2px 4px;
    color: white;
    cursor: pointer;
    
}

.delete-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius:2px;
    border:1px solid;
    font-size:12px;
    background: rgba(0, 0, 0, 0.5);
    padding:2px 4px;
    color: white;
    cursor: pointer;
    
}

