/* Styles for StreetView Locations Manager */

.sv-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#streetview-map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.sv-map {
	width: 100%; height: 600px; background-color: rgb(227, 227, 227); position: relative; overflow: hidden;
    border-radius: 12px;
}
.sv-panorama {
	width: 100%; height: 800px; margin-top: 20px; border: 1px solid rgb(204, 204, 204); position: relative; overflow: hidden;
    border-radius: 12px;
}

.sv-comments {
    margin-top: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.sv-comments ul {
    list-style: none;
    padding: 0;
}

.sv-comments li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.sv-comments form {
    margin-top: 10px;
}

.sv-comments input, .sv-comments textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.sv-comments button {
    margin-top: 10px;
    padding: 10px 15px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.sv-comments button:hover {
    background: #005177;
}

.sv-submission-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.sv-submission-form label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.sv-submission-form input,
.sv-submission-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.sv-submission-form button {
    background: #d33;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
}

.sv-submission-form button:hover {
    background: #b00;
}

