
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    margin: 0;
    padding: 30px 10px;
}
.container-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
}
.srp-form, .srp-list {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}
.srp-form:hover, .srp-list:hover {
    transform: translateY(-3px);
}
.srp-form h2, .srp-list h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
button {
    background: #28a745;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover {
    background: #218838;
}
.srp-link {
    display: block;
    font-size: 15px;
    color: #007bff;
    text-decoration: none;
    margin-bottom: 12px;
}
.srp-link:hover {
    text-decoration: underline;
}
.srp-click {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}
.dev-info {
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    color: #666;
}
.dev-info a {
    color: #0073aa;
    text-decoration: none;
}
.dev-info a:hover {
    text-decoration: underline;
}
