* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", 
                 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body{
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    background-color: #dcdcdc;
}

.card_block{
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin: 15px 0px;
}

.card-container{
    margin: 30px 0px;
    width: 100%;
}

.card{
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #CCC;
    display: flex;
    flex-direction: column;
    height: 220px;
    padding: 20px;
    width: 45%;
}

.card-empty{
    height: 220px;
    padding: 20px;
    width: 45%;
}

.card-plus {
    background: #FFF;
    border: 1px solid #CCC;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 20px;
    width: 45%;
    position: relative;
}

.card-plus svg,
.card-content {
    transition: opacity 0.3s ease;
}

.card-plus svg {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-plus:hover .card-content {
    opacity: 0;
    pointer-events: none; /* Optional */
}

.card-plus:hover svg {
    opacity: 1;
}

.card:hover, .card-plus:hover{
    box-shadow: 6px 6px #CCC; 
}

.card-content{
    margin-bottom: 25px;
}

.card_block p{
    font-size: 16px;
    margin-top: 10px;
}

p.description{
    font-weight: 500;
}

p.experience{
    background-color: #e1dfdf;
    border-radius: 5px;
    display: inline-block;
    padding: 2px 5px;
}

p.date, p.experience{
    color: #6C6C6C;
}

button.apply{
    background-color: #854DD9;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 18px;
    height: 30px;
    padding: 7px;
    line-height: 15px;
}

button.apply:hover{
    background-color: #A87DE9;
}

.button-container{
    display: flex;
    justify-content: flex-end;
}

h3{
    font-size: 22px;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
}

.content{
    align-items: center;
    display: flex; /* Ensures the address and map align horizontally */
    flex-direction: column; /* Stack them vertically */
    gap: 10px; /* Adds some spacing between the address and map */
    width: 70%;
}

.location{
    display: flex; 
    flex-direction: column;
    justify-content: flex-start; 
    gap: 10px; 
    width: 90%;
}

.address{
    margin-bottom: 20px;
}

.address p{
    font-size: 20px;
}

p.primary{
    font-weight: 700;
    margin-top: 0px;
}

label{
    padding: 7px;
    border-radius: 10px;
    cursor: pointer;
}

label a{
    text-decoration: none;
}

.arc, .arc a{
    color: #B30120;
    background-color: #D893A3; 
}

.act, .act a{
    color: #016B21;
    background-color: #85E49D;
}