.srp-container {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    padding: 25px;
    font-family: system-ui, sans-serif;
}

.srp-container h3 {
    text-align: center;
    margin-bottom: 20px;
}

.srp-container input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.srp-container input[type="submit"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #2271b1;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.srp-container input[type="submit"]:hover {
    background: #135e96;
}

.srp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.srp-table th {
    background: #f1f5f9;
}

.srp-table th,
.srp-table td {
    padding: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.srp-badge-pass {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: bold;
}

.srp-badge-fail {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: bold;
}
