
.ss-container {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

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

.ss-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ss-form label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #444;
}

.ss-form input {
    width: 80px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.ss-btn {
    background: #0073aa;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.ss-btn:hover {
    background: #005f87;
}
