.wpsw-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wpsw-container h2, .wpsw-container h3 {
    text-align: center;
    color: #333;
}

.wpsw-form-group {
    margin-bottom: 15px;
}

.wpsw-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wpsw-form-group input, 
.wpsw-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.wpsw-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.wpsw-btn:hover {
    background-color: #005177;
}

.wpsw-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.wpsw-table th, .wpsw-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.wpsw-table th {
    background-color: #f1f1f1;
    font-weight: bold;
}

.wpsw-note {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
    display: block;
}
