@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Work Sans', sans-serif;
}

.btn-primary {
    background-color: #49c8f1;
    height: 50px;
    transition: box-shadow, background-color ease-in-out .3s;
    font-weight: 400;
    box-shadow: 2px 4px 4px 1px rgba(0, 0, 0, .0549019608);
    cursor: pointer;
    border: 3px solid #49c8f1;
    font-weight: 400;
    font-size: 1.1em;
    border-radius: 10px;
    padding: 0 4.1em;
}

.btn-primary:hover {
    background-color: #5eb3ce;
    border-color: #49c8f1;
}

.btn-primary:focus{
    background-color: #5eb3ce !important;
    border-color: #49c8f1 !important;
    box-shadow: 0 0 0 .25rem rgba(73, 200, 241, .25);
}

input.form-control {
    height: 50px;
    border-radius: 10px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0px;
}

.form-control:focus {
    border-color: #49c8f1;
    box-shadow: 0 0 0 .25rem rgba(73, 200, 241, .25);
}

.btn-primary:active {
    background-color: #49c8f1;
    border-color: #49c8f1;
}

.form-check-input:checked {
    background-color: #49c8f1;
    border-color: #49c8f1;
}

aside {
    height: 100vh;
    width: 250px;
    box-shadow: 2px 4px 4px 1px rgba(0, 0, 0, .0549019608);
}

aside nav .logo-wrap{
    padding: 1.5rem;
}

aside nav .nav-link{
    color: #515151;
    font-size: 1.1rem;
    transition: all ease-in-out .3s;
    padding: 0.8rem 1.5rem;
}

.nav-link:hover {
    color: #000;
}

aside nav .nav-link.active {
    border-left: 2px solid #49c8f1;
    color: #49c8f1;
}

content {
    background-color: #f3f3f3;
    width: 100%;
    padding: 2.5rem;
}

h2{
    font-weight: 800;
}

h4{
    font-weight: 600;
}

.header{
    background-color: #fff;
    border-radius: 10px;
    padding: 1.2rem;
}

.main-card {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 2px 4px 4px 1px rgba(0, 0, 0, .0549019608);
    overflow: hidden;
    height: 100%;
}

.main-card .head{
    height: 200px;
    background-size: cover;
    background-position: center;
}

.main-card .head img{
    width: 100%;
}

.main-card .body{
    padding: 1rem;
}

.main-card .tag{
    border-radius: 5px;
    border: 1px solid #000;
    padding: 0 0.3rem;
    width: fit-content;
}

.main-card .version span{
    border-radius: 5px;
    padding: 0 0.3rem;
    background-color: #49c8f1;
    width: fit-content;
    color: #fff;
}

.staff .staff-member {
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: cover;
    border-radius: 100%;
    border: 2px solid #6a6afe;
}

.staff .staff-member.next{
    margin-left: -15px;
}

.staff .staff-member.blue {
    border: 2px solid #49c8f1;
}

.staff .staff-member.green {
    border: 2px solid #a4cd39;
}

.staff .staff-member.orange {
    border: 2px solid #f99d25;
}

.small.orange {
    color: #6a6afe;
}

.occurence {
    background-color: #f99d25;
    height: 35px;
    width: 35px;
    color: #fff;
    border-radius: 100%;
    cursor: pointer;
}

.action {
    background-color: #49c8f1;
    height: 35px;
    width: 35px;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}

.action.green{
    background-color: #a4cd39;
}

.error-message{
    display: flex;
    margin-bottom: 10px;
    flex-direction:column;
}

.error-message span {
    background-color: #ffc6c6;
    padding: 0.25rem;
    border-radius: 5px;
    border-left: 3px solid #ff0000;
}

.main-card .head .dropdown {
    top: 5px;
    right: 5px;
}

@media only screen and (max-width: 600px) {
    aside{
        display: none;
    }

    content {
        padding: 1.5rem;
    }
}