.theme-resume-gen-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f5f7;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.theme-resume-gen-h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    color: #1d1d1d;
}

.theme-resume-gen-p {
    max-width: 700px;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}

.theme-resume-gen-form-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.theme-resume-gen-control {
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    box-sizing: border-box;
    width: 100%;
}

.theme-resume-gen-control:focus {
    border-color: #e63946;
    box-shadow: 0 0 5px rgba(230, 57, 70, 0.3);
}

.theme-resume-gen-button {
    background-color: #e63946;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.theme-resume-gen-button:hover {
    background-color: #d62839;
    transform: translateY(-2px);
}

.theme-resume-gen-output {
    margin-top: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
}

.theme-resume-gen-section-block {
    margin-top: 15px;
}

.theme-resume-gen-section-block strong {
    display: block;
    margin-bottom: 5px;
}

.theme-resume-gen-section-block p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.theme-resume-gen-btn-home {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #1d3557;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.theme-resume-gen-btn-home:hover {
    background-color: #457b9d;
    transform: translateY(-2px);
}

@media (max-width: 420px) {
    .theme-resume-gen-h1 {
        font-size: 1.5rem;
    }

    .theme-resume-gen-p {
        font-size: 0.95rem;
    }

    .theme-resume-gen-control {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}