* {
    font-family: "Manrope", sans-serif;
}

body {
    margin: 0;
}

.form-enter {
    display: flex;
        flex-direction: column;
        align-items: center;
}

.new-visit {
    height: 40px;
    margin: 10px 0 10px 10px;
    font-size: 15px;
    line-height: 19px;
    text-transform: uppercase;
    background: #007df2;
    color: white; 
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.5s;
    border: none;
    
}

.new-visit:hover {
    background-color: #EFEFEF;
    color: black;
}

.modal-container {
    width: 500px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    justify-content: space-between;
}

.doctors,
.urgency {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    color: #777;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.purpose,
.description,
.name-input,
.pressure,
.bmi,
.heart-diseases,
.age-input,
.last-visit {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    color: #777;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.modal-container {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.create-btn {
    margin-top: 10px;
    height: 40px;
    width: 230px;
    font-size: 15px;
    line-height: 19px;
    cursor: pointer;
    transition: background-color 0.5s;
    border: none;
    border-radius: 8px;
    background-color: #007df2;
    color: white;
}

.create-btn:hover {
    color: black;
    background-color: #e4e4e4;
}

.close-btn {
    margin-top: 10px;
    height: 40px;
    width: 230px;
    font-size: 15px;
    line-height: 19px;
    cursor: pointer;
    transition: background-color 0.5s;
    border: none;
    border-radius: 8px;
    background-color: #444444;
    color: white;
}

.close-btn:hover {
    color: black;
    background-color: #e4e4e4
}

.card {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    width: 400px;
}

.visit-name {
    font-size: x-large;
    font-weight: bold;
    margin: 0;
}

.visit-doctor {
    font-weight: 600;
    font-size: large;
}

.visit-purpose,
.visit-description,
.visit-urgency,
.visit-info,
.visit-pressure,
.visit-bmi,
.visit-heartdiseases,
.visit-age,
.visit-last {
    font-weight: 500;
}