.ssc-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.ssc-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.ssc-field {
    margin-bottom: 15px;
}

.ssc-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    color: #444;
}

.ssc-field input,
.ssc-field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.ssc-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.ssc-buttons button {
    flex: 1;
    padding: 10px;
    margin: 0 5px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.ssc-buttons button#use-location {
    background: #0073aa;
    color: #fff;
}

.ssc-buttons button#use-location:hover {
    background: #005f8d;
}

.ssc-buttons button[type="submit"] {
    background: #28a745;
    color: #fff;
}

.ssc-buttons button[type="submit"]:hover {
    background: #218838;
}

#ssc-results {
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    background: #f4f9ff;
    border: 1px solid #cce0ff;
    display: none;
}

.ssc-result-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.ssc-result-card:hover {
    transform: scale(1.02);
}

.ssc-faq {
    margin-top: 10px;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.ssc-faq-title {
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.ssc-faq-title:before {
    content: "📍";
    margin-right: 8px;
}

.ssc-faq-content {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.ssc-faq-content p {
    margin: 0;
}