/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

header {
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    color: #1a202c;
    font-weight: 700;
}

.controls {
    margin-bottom: 30px;
}

.controls label {
    font-weight: 500;
    margin-right: 10px;
}

select, input[type="text"], input[type="url"], input[type="date"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

select:focus, input:focus, textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

.schema-form .form-group {
    margin-bottom: 20px;
}

.schema-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.output-container {
    margin-top: 40px;
}

.output-container h2 {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.output-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

#copyButton {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

#copyButton:hover {
    background-color: #357abd;
}

pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    white-space: pre-wrap;
    word-wrap: break-word;
    min-height: 100px;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 14px;
}

.schema-form .form-group {
    margin-bottom: 20px;
}

.schema-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Gaya untuk item dinamis (FAQ, Breadcrumb, HowTo) */
.dynamic-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
}

.dynamic-item-header {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #4a90e2;
}

.add-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.add-button:hover {
    background-color: #218838;
}

textarea {
    min-height: 80px;
    resize: vertical;
}