#create-draft-modal {
    display: none;
    z-index: 99996;
}

#create-draft-modal .create-draft-container {
    max-width: 550px;
}

#create-draft-modal .create-draft-header {
    background: linear-gradient(135deg, #0ECB81 0%, #14b8a6 100%);
    color: #FFFFFF;
}

#create-draft-modal .create-draft-close {
    color: #FFFFFF;
}

#create-draft-modal .create-draft-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

#create-draft-modal .create-draft-group {
    margin-bottom: 16px;
}

#create-draft-modal .create-draft-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-primary);
}

#create-draft-modal .create-draft-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

#create-draft-modal .create-draft-textarea {
    resize: vertical;
}

#create-draft-modal .create-draft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

#create-draft-modal .create-draft-footer {
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
}

#create-draft-modal .create-draft-cancel {
    min-width: 80px;
}

#create-draft-modal .create-draft-submit {
    min-width: 120px;
    background: #0ECB81;
    border-color: #0ECB81;
}
