.lab{
    font-family: Arial, sans-serif;
    background-image: url(images/labtest.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #99c9af;
    background-blend-mode: multiply;
    justify-content: center;
    align-items: center;
}

.test-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 250px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.test-card img{
    width: 60%;
    margin-bottom: 5px;
}

.test-card:hover {
    transform: scale(1.05);
}

.form-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.form-container {
    background-color: #d5e3e7;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.form-container h2 {
    margin-top: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.form-container p{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.form-container button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #060e6c;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}

.form-container button:hover {
    background-color: #12a1b4;
}

.form-container button a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}
