
.joyone-property {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 800px;
}

.joyone-property h2 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

.joyone-property p {
    font-size: 15px;
    margin: 4px 0;
    color: #444;
}

.joyone-property a.btn-360 {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 18px;
    background-color: #3498db;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}
.joyone-property a.btn-360:hover {
    background-color: #2980b9;
}

.property-cover {
    margin-top: 15px;
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.joyone-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.joyone-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 150px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.joyone-property form {
    margin-top: 20px;
}
.joyone-property form label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
.joyone-property form input[type="text"] {
    padding: 10px;
    margin-top: 5px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border 0.3s;
}
.joyone-property form input[type="text"]:focus {
    border-color: #3498db;
    outline: none;
}
.joyone-property form input[type="submit"] {
    margin-top: 15px;
    background-color: #27ae60;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}
.joyone-property form input[type="submit"]:hover {
    background-color: #1e8449;
}

.joyone-success {
    padding: 10px;
    margin-bottom: 15px;
    background-color: #eafaf1;
    border: 1px solid #27ae60;
    border-radius: 6px;
    color: #1e8449;
    font-weight: bold;
}
