.add-property {
    padding: 10px 20px;
    text-align: center;
}

.add-property h2 {
    font-size: 28px;
    color: #00175f;
    margin-bottom: 30px;
}

.add-property-form {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.add-property-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333333;
}

.add-property-form input,
.add-property-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
}

.add-property-form button {
    background-color: #00175f;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-property-form button:hover {
    background-color: #0a9396;
}

.contact-links {
    margin-top: 20px;
    text-align: center;
}

.contact-links a {
    display: inline-block;
    margin: 0 10px;
    color: #005f73;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
    padding: 10px;
}

.contact-links a:hover {
    color: #0a9396;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #075E54;
    font-weight: bold;
    font-size: 16px;
    margin: 10px;
}

.contact-link img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.cancel-button {
    background: red !important;
}

.add-property-form.visible {
    display: block;
}
