.go-meta-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: #0f1117;
    color: #fff;
    border-radius: 16px;
}

.go-meta-left,
.go-meta-right {
    flex: 1;
}

.go-meta-left h2,
.go-meta-right h2 {
    margin-bottom: 20px;
}

.go-meta-left label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

.go-meta-left input,
.go-meta-left textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #2a2d36;
    background: #161a23;
    color: #fff;
    font-size: 14px;
}

.go-meta-left textarea {
    height: 100px;
    resize: none;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

.checkbox-group {
    margin-top: 15px;
}

.go-generate-btn {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #e5e5e5;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.go-generate-btn:hover {
    background: #ffffff;
}

.go-meta-right textarea {
    width: 100%;
    height: 450px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #2a2d36;
    background: #161a23;
    color: #00ff9d;
    font-family: monospace;
    font-size: 14px;
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.copy-btn {
    background: transparent;
    border: 1px solid #2a2d36;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
}
.go-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.go-checkbox input[type="checkbox"] {
    width: 12px;
    height: 12px;
    accent-color: #3b82f6; /* Modern blue */
    cursor: pointer;
}

.go-checkbox label {
    font-size: 14px;
    color: #e5e7eb;
    cursor: pointer;
    margin: 0;
}
.go-meta-right p {
    font-size: 13px;
}
